@font-face {
  font-family: VHS;
  src: url("https://peachyvoid.com/fonts/VT323-Regular.ttf");
}



body {
  margin: 0;
  padding: 0;
  font: 17px 'lato', courier, tahoma;
  color: #000000;
  letter-spacing: 1px;
  text-shadow: 0px 0px 1px #bbb;
  background: url("https://peachyvoid.com/backgrounds/UidoGw0.gif") repeat;
  background-color: #352b20;
  background-attachment: fixed;
  background-position: center top;
  font-family: VHS;
  font-size: 19px;
}

.container {
  display: flex;
}

.sidebar {
  position: fixed;
  top: 100px;
  left: 200px;
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-content {
  margin-top: 80px;
  margin-left: 470px; 
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 560px;
  text-align: center;

}

.box {
  background: #2819528f; 
  backdrop-filter: blur(3px);
  color: #ffffff;
  border: 2px solid #b3a5d8;
  border-radius: 10px;
  padding: 12px;
  position: relative;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  overflow-y: auto;
  height: 80vh;
  
}

.box-nav {
  background: #2819528f; 
  backdrop-filter: blur(3px);
  color: #ffffff;
  border: 2px solid #b3a5d8;
  border-radius: 10px;
  padding: 12px;
  position: relative;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  overflow-y: auto;
  text-align: center;
  
}

.box::before {
  content: attr(data-title);
  display: block;
  background: #d4d8ff;
  color: #000;
  padding: 5px 10px;
  margin: -12px -12px 10px -12px;
  border-bottom: 2px solid #a4ddfd;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
}


.box::after {
  content: "x";
  position: absolute;
  top: 5px;
  right: 10px;
  color: #000;
  font-size: 12px;
  font-weight: bold;
}

.box-nav::before {
  content: attr(data-title);
  display: block;
  background: #d4d8ff;
  color: #000;
  padding: 5px 10px;
  margin: -12px -12px 10px -12px;
  border-bottom: 2px solid #a4ddfd;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
}


.box-nav::after {
  content: "x";
  position: absolute;
  top: 5px;
  right: 10px;
  color: #000;
  font-size: 12px;
  font-weight: bold;
}

a {
  color: #a4ddfd;
}

.content-gifs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
  max-width: 400px;
  margin: 50px auto;
  justify-items: center;
  align-items: center;
}

.content-gifs img {
  max-width: 85px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}


.box::-webkit-scrollbar {
  width: 6px;
}

.box::-webkit-scrollbar-thumb {
  background: #b3a5d8;
  border-radius: 10px;
}

.content-gifs img {
  max-width: 85px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.2s ease; 
}

.content-gifs img:hover {
  transform: scale(1.1); 
}

.content-gifs img:hover {
  transform: scale(1.3);
  filter: drop-shadow(0 0 6px #b3a5d8);
}

.text-button {
  display: inline-block;
  padding: 4px 8px;
  margin: 2px;
  background: rgba(183, 120, 255, 0.979); 
  border: 4px solid #fdc9fb83;
  border-radius: 6px;
  color: #ffd6f6;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.text-button:hover {
  background: rgba(200, 181, 255, 0.507);
  transform: translateY(-2px) scale(1.3);  
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

a:hover {
  color:#b3a5d8;
}

.box-nav.scroll-box {
  max-height: 470px;
  overflow-y: auto;
}

.scroll-box::-webkit-scrollbar {
  width: 6px;
}

.scroll-box::-webkit-scrollbar-thumb {
  background: #b3a5d8;
  border-radius: 10px;
}