/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url('hentai_folder/images/porndesign.png');
  font-family: Courier;
  text-align: center;
}

li {
  list-style-type: none;
}
  
a:link {
  color: #003366;
  background-color: transparent;
  text-decoration: underline;
}

a:visited {
  color: #003366;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #003366;
  text-decoration: underline;
  padding:5px;
  
}

a.secret:hover {
  color: #e1b429;
  text-decoration: underline;
  background-image: none;
  border: 2px solid #e1b429;
  padding: 5px;
}

.a-gif {
   max-width: 90%;
   height: auto; 
}


.container{
    border: 1px solid #003366;
    background-color: #e9ffff;
    color: #003366;
    width: 1280px;
    height: fit-content;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-rows: 10% 25% 25% 25% 15%;
    grid-template-areas:
      "header header header header"
      "menu content content content"
      "menu content content content"
      "menu content content content";
      gap: 5px;
      align-self: center;
      justify-self: center;
      padding: 10px;
      height: fit-content;
}

.container p {
  text-align: justify;
}

.side {
    /*border: 2px solid #33CC00;*/
    grid-area: menu;
    height: 870px;
     background-color: #08a4a7;
     color:#003366;
}

.banner {
   /* border: 1px solid #33CC00;*/
    grid-area: header;
    position:relative;
}
.banner h1 {
 font-size: 50px; 
}


.logo{
  width:540px;
  height: auto;
  position: absolute; 
  left:25px;
  bottom: -100px;
}

.content {
/*border: 1px solid #33CC00;*/
height: fit-content;
grid-area: content;
padding: 20px;
}

.youtube {
  display: flex;
  flex-wrap: wrap;
}

.youtube iframe {
  width: 50%;
  height: auto;
  padding-bottom: 10px;
}

.links {
  display: flex;
  justify-content: space-around;
}

.links a {
  border: 5px solid #003366;
}

/* ------------------------------------------------------------------ */ 

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  max-width: 300px; /* optional: controls thumbnail width */
}

.gallery img {
  width: 100%;
  height: 200px; /* choose the thumbnail height you want */
  object-fit: cover; /* crop to fill */
  display: block;
}

.gallery:hover {
  border-color: #777;
}

.desc {
  padding: 10px;
  text-align: center;
  background-color: white;
}

