*, *::before, *::after {
  box-sizing: border-box;
  font-family: 'Courier New', Courier, monospace;
}

/* FONT */

.special-elite-regular {
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;}

body {
  background-color: #f1efc9;
  background-image: url("../images/wallapaper_dark.jpg");
  background-size: cover;
  max-width: 960px;
  margin: auto;
  position: relative;
  top:30px;
  padding-bottom: 30px;
}

#title {
    margin: auto;
    transform: rotate(-1deg);
    width: 80%;
    padding: 5px;
    color: #575341;
    background-color: white;
    font-size: 50px;
    font-family: 'Special Elite';
    text-align: center;
    box-shadow: 5px 3px 3px #655248;
  }

.intro-container {
  margin:auto;
  width:75%;
  filter: drop-shadow(10px 12px 4px rgba(0, 0, 0, 0.4));
  border: 45px solid  transparent;
  border-image: url("../images/frame.png") 350 stretch;
}

#intro {
  font-size: 18px;
  font-weight: 700;
  padding: 20px;
  text-align: justify;
  color: #3e332a;
  background-image: url("../images/background_frame.jpg");
  background-size: cover;
}

.main-container {
  display: grid;
  grid-template-columns: 30% 1fr; 
  height: 450px;
}

.main-content-area {
  display: flex;
  flex-direction: column;
  background: #f1f1f1;
  padding-left: 10px;
  padding-right: 10px;
}

.tab {
  overflow-y: scroll;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  height: 100%;
}


#className{
  color:#676767;
  font-weight: 700;
  font-size:larger;
  float: left;}

#desc {
  color:#858585;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight:lighter;
  margin-left: 0;
}

.drawerHeader {
  display: flex;
  height: 70px;
  position: relative;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f1f1;
  gap: 10px;

  padding-bottom: 2.25px; 
}

.drawerHeader hr {
  border: none; 
  border-top: 2.25px dotted #424242;
  position: absolute;
  bottom: 0;          /* Place it at the bottom edge */
  left: 0;
  right: 0;
  width: 100%;        /* Make it span the full width */
  margin: 0;
    }

p {
    color: #424242;
    font-size: 17px;
    font-family:Arial, Helvetica, sans-serif;
    text-align: left;}



/* GALLERY */

.lid {
  width: 100%;
  height: 100%;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  gap: 10px;
  padding: 10 10 30 10;
  overflow-y: scroll;
  overflow-x: hidden;
}


.display_item {
  width: 64px;
  height: 64px;
  object-fit: cover;
  display: none;
  vertical-align: middle;
  border-radius: 5px;
  flex-shrink: 0;
}
.show-image {
  display: inline-block;
}

.display_item img {
  height: 100%;
  width: 100%;
}

.display_item li img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 5px;
}

/* TABS */
.tab button {
  display: block;
  background-size: cover;
  color: black;
  background-image: url("../images/drawer.png");
  padding: 22px 16px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 700;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #ccc;
}

.tabcontent {
  overflow: auto;
  scrollbar-width: thin;
  display:none;
  float: left;
  padding: 0px 12px;
  border: 1px solid #ccc;
  background-color:#f1f1f1;
  width: 70%;
  border-left: none;
  height: 400px;
}

/* SCROLL */
div.scrollmenu {
  overflow: auto;
  white-space: nowrap;
}

div.scrollmenu a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

div.scrollmenu a:hover {
  background-color: #777;
}

