* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1)); /*Replace with your own background*/
	background-image: url("witherpape.png");
    background-size: cover;
	background-attachment: fixed;
  background-position:center;
	font-family: "VT-100", fixedsys, System, monospace;
	font-size: 13px;
  }

.container-0 {
    width: 100vw;
    height: 100vh;
}
.container {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
    }
    .header-center {
        width: 100%;
    }
    .main-container {
        flex-direction: column !important;
        overflow-y: scroll;
    }
    .middle {
        margin: 0px;
    }
    .wrap {
        flex: 100%;
        margin: 3px 7px !important;
        overflow: scroll;
    }
    .dropdown-area {
        width: 100%;
    }
    .right {
        display: none;
    }
    .dropdown {
        margin: 5px auto;
    }
}

@media (min-width: 900px, max-width: 1600px) {
    .header-center {
        width: 400px;
        height: 47px;
    }
    .middle {
        margin-left: 20px;
        margin-right: 20px;
    }
    .dropdown-area {
        width: 250px;
    }
    .middle-intro, .middle-journal {
        width: 100%;
    }
    .right {
        display: none;
    }
    .dropdown {
        margin-left: 5px;
    }
}

@media (min-width: 1600px) {
    .middle {
        margin-left: 60px;
        margin-right: 60px;
    }
    .dropdown-area {
        width: 350px;
    }
    .right {
        width: 350px;
        display: block;
    }
    .middle-intro {
        width: 80%;
    }
    .middle-journal {
        width: 500px;
    }
}

.header-container {
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.header-center {
    margin: auto;
    width: 400px;
    height: 47px;
}
ul {
    list-style-type: none;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    background: rgba(75, 25, 25, 0.9);
    height: 34px;
}
li a, li p, .dropdown-content2 a {
    color: #D2D2D2;
    font-weight: bold;
    padding: 7px 10px;
    font-size: 15px;
    display: block;
    text-decoration: none;
}
.dropdown2 {
    max-width: 90px;
}
.dropdown-content2 {
    display: none;
    padding: 0px;
    background: rgba(75, 25, 25, 0.9);
}
li a:hover, .dropdown2:hover, .dropdown-content2 a:hover {
    background-color: rgba(15, 0, 5, 0.8);
    font-size: 16px;
}
.dropdown2:hover .dropdown-content2 {
    display: block;
}


.main-container {
    display: flex;
    flex: 1;
    flex-direction: row;
    margin-top: 25px;
    overflow: hidden;
    height: 100%;
}

.dropdown-area {
    background-color: rgba(0);
}

.right {
    background-color: rgba(0);
}

.middle {
    background-color: rgba(0);
    flex: 1;
    flex-direction: column;
    overflow-y: auto;
}
.middle-intro {
    
    margin: 0px auto;
    display: flex;
    background-color: #A5A5A5;
    max-height: 600px;
    padding: 10px;
    overflow-y: auto;
}
.middle-journal {
    
    margin: 25px auto;
    display: flex;
    flex-direction: column;
}
.journal-titlebar {
    background: rgba(75, 25, 25, 0.9);
    color: #D2D2D2;
    font-weight: bold;
    padding: 5px;
    display: flex;
    justify-content: space-between;
}
.journal-text {
    overflow-x: hidden;
    padding: 10px;
}

.middle-content-inside {
    border: solid 2px;
    border-color: #A5A5A5;
    padding: 5px;
    overflow-y: scroll;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    margin-top: 15px;
}
.image-container {
    max-width: 550px;
    display: flex;
    overflow: hidden;
    position: relative;
    justify-content: center;
}

.tooltiptext {
    visibility: hidden; /* Hidden by default */
    max-width: 460px;
    text-align: center;
    padding: 5px;
    background-color: rgba(15, 0, 5, 0.8);
    border-radius: 5px;
    border: 1px solid #5A798C;
    color: #9D9DA1;
    align-self: center;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1; /* Ensure tooltip is displayed above content */
}
.image-container:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.color {
    background-color: rgba(15, 0, 5, 0.8);
    border-radius: 5px;
    border: 1px solid #5A798C;
    color: #9D9DA1;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  width: 160px;
  background-color: rgba(75, 25, 25, 1);
  border-radius: 5px;
  border: 1px solid #5A798C;
}
.right-dropdown {
  float: right;
  margin: 5px;
  font-family: "Arial", sans-serif;
  color: #D2D2D2;
  line-height: 12px;
  }
  
/* Dropdown Button */
.dropbtn {
  background-color: rgba(75, 25, 25, 0.9);
  color: #D2D2D2;
  padding: 5px;
  font-size: 13px;
  padding-top: 3px;
  padding-bottom: 3px;
  border: none;
  cursor: pointer;
}
/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  color: #FF004E;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(15, 0, 5, 0.8);
  min-width: 160px;
  border-radius: 5px;
  border: 1px solid #5A798C;
  z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content p {
  color: #9D9DA1;
  padding: 10px;
  padding-bottom: 5px;
  padding-top: 5px;
  text-decoration: none;
  display: block;
}


/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

/*.whimsy-right {
    background-color: #A5A5A5;
    flex-basis: 210px;
    overflow-y: auto;
    order: 3;
}

.footer-container {
    flex: 1;
    display: flex;
    flex-direction: row;

}

.footer {
    flex: 1;
    background-color: #7B7B7B;
}

?*
#1D1D1D
#545454
#7B7B7B
#A5A5A5 */
