  body {
    font-family: 'Aladin', cursive;
    background-color: #FFA3A5;
    animation: fadein 1s;
    margin: 0px;
  }
  h1 {
    color: #000000;
    font-family: 'Aladin', cursive;
    text-align: center;
  }
  h2 {
      color: #fff;
      font-family: 'Aladin', cursive;
  }
  p {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px black; 
  }
  img {
    max-width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
  }
  .content {
    text-align: center;
    position: relative;
  }
  @keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12dvh;
}
.gallery-image {
  max-width: 100%;
  height: 70dvh;
  cursor: pointer;
}
.gallery-image-small {
  max-width: 100%;
  height: 30dvh;
  cursor: pointer;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.lightbox-image {
  max-width: 90%;
  max-height: 90%;
}
.lightbox-title {
  color:#fff;
}
.lightbox-description {
  color:#ccc;
}

.close-button {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

  
.navbar {
    background-color: #f4a261;
    color: #000;
    padding: 10px;
    text-align: center;
  }
  .glitterfairy {
    height:5%;
    width: 5%;
    display: inline;
  }
  .navbar a {
    color: #000000;
    text-decoration: none;
  }
  .emoji {
    display:inline;
  }
  .header {
    background-color: #FFBF81;
    padding: 10px;
    text-shadow:1px 1px 2px #000;
  }
  .footer {
    background-color: #FFDC5E;
    color: #000000;
    text-align: center;
    padding: 10px;
    text-shadow: 1px 1px 2px white; 
    top:88dvh;
    height:12dvh;
    position:fixed;
    width: 100dvw;
  }