body{
    max-width:1440px;
    background-color: #c9f7f7;
    opacity: 1;
    background-image:  linear-gradient(#72d5e0 2px, transparent 2px), linear-gradient(to right, #72d5e0 2px, #c9f7f7 2px);
    background-size: 40px 40px;
    font-family:arial;
    line-height:2;
    margin-left:auto;
    margin-right:auto;
}

/*-- Font --*/
@font-face{
  font-family:silkscreen;
  src: url("https://www.pixelbombpop.com/fonts/Silkscreen.ttf");
}

/*-- Paragraph --*/
.p{
  text-align:justify;
  font-size:12px;
  color:#373B3E;
}

/*-- Links --*/
a{
  color:#E12885;
  font-weight:bold;
  text-decoration:none;
}

a:hover{
  color:#00B3AA;
  text-decoration:none;
}

/*-- Headliner --*/

h1, h2{
  margin:0px;
}

h2{
  color:#00B3AA;
  font-size:40px;
  font-family:silkscreen;
}

/*-- Flex --*/
.flex{
  display:flex;
  justify-content:center;
  gap:10px;
}

.miku{
  width:720px;
  max-height:700px;
  order:1;
}

.figures{
  width:720px;
  max-height:700px;
  overflow-y: scroll;
  scrollbar-color: #72d5e0 transparent;
  scrollbar-width:thin;
  order:2;
}


/*-- Section --*/
section{
  background: #ffffff;
  background: linear-gradient(180deg,rgba(255, 255, 255, 1) 4%, rgba(230, 230, 230, 0.76) 100%);
  padding:40px;
  margin-bottom:20px;
  border:3px dashed #00B3AA;
  border-radius:10px;
  box-shadow: 0px 0px 20px #00B3AA;
  padding:40px;
}

/*-- Image Gallery --*/
    .image-gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
    }
    
    .image-gallery img {
      width: 150px;
      height: 150px;
      object-fit: cover;
      border-radius: 5px;
      margin:5px;
      transition: 0.3s;
    }
    
    .image-gallery img:hover{
       opacity:1.0;
       transition: 0.3s;
       transform: scale(1.05);
    }
    
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 999;
      justify-content: center;
      align-items: center;
    }
    
    .lightbox-image {
      max-width: 90%;
      max-height: 90%;
      border-radius: 5px;
    }
