body {
    font-family: Arial, sans-serif;
    margin: 0 auto;
    padding: 0;
    background-color: #414040;
}

main {
    max-width: 700px;
    margin: 0 auto;
    padding: 15px;
}

#header {
  /* background-color: #414040; */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(190, 190, 190, 0.5)), url(/images/oaks_02.JPG);
  background-repeat: no-repeat;
  background-size: cover;
}

.header_image {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
  
img {
    max-width: 100%;
    height: auto;
    display: block;
}

#overlay-text {
    top: 50%;
    left: 70%;
    font-family: 'Caveat';
    position: absolute;
    color: whitesmoke;
    text-shadow: 5px 5px 7px rgba(0, 0, 0, 0.7);
    opacity: 0;
}

.overlay-text-visible {
  font-size: clamp(70px, 28vw, 200px);
  transform: translate(-50%, -50%);
  animation: slideFadeIn 2s forwards;
  animation-delay: 0.2s;
}

@keyframes slideFadeIn {
    0% {
      opacity: 0;
      transform: translate(-50%, -50%) translateY(-50px);
    }
    100% {
      opacity: 0.8;
      transform: translate(-50%, -50%) translateY(0);
    }
}

.main_image{
    opacity: 0;
    transform: scale(0.6);
    animation: zoomFadeIn 2s ease forwards;
    animation-delay: 0.5s;
  }

.main_image img {
  width: 100%;
  border-radius: 10px;
}

  @keyframes zoomFadeIn {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  #advertise a {
    width: 100%;
    margin: 15px 0px;
    border-radius: 15px;
    background: radial-gradient(circle, #a6a6a6bf, #191919);
    background-size: 130% 130%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: gradientAnimation 0.8s linear infinite;
  }

  #advertise .ad-left {
    width: 45%;
    padding: 5%;
  }

  #advertise img{
    border-radius: 12px;
  }

  #advertise .ad-right{
    display: flex;
    justify-content: center;
    align-items: center; 
    position: relative;
    width: 45%;
    padding: 5%;
  }

  @keyframes gradientAnimation {
    0% {
        background-position: 30% 30%;
    }
    25% {
        background-position: 60% 60%;
    }
    50% {
        background-position: 90% 90%;
    }
    25% {
        background-position: 60% 60%;
    }
    100% {
        background-position: 40% 40%;
    }
}

  #free-space {
    margin-bottom: 80px;
  }

  .free-space-item{
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }

  @keyframes titleFadeIn {
    0% {
      opacity: 0;
      transform: translateY(-50px);
    }
    100% {
      opacity: 0.8;
      transform: translateY(0);
    }
}

  .title a {
    color: inherit;
    text-decoration: none;
  }

  .title h1 {
    font-family: 'Caveat';
    margin: 0;
    padding: 15px;
    text-shadow: 5px 5px 7px rgba(0, 0, 0, 0.7);
    background: linear-gradient(to bottom, #cecece6c, #414040);
    opacity: 0;
    animation: titleFadeIn 2s forwards;
    animation-delay: 0.2s;
  }

  footer {
    width: 100%;
    background-color: #333333a4;
    color: white;
    font-size: 12px;
    text-align: center;
    padding: 12px 0px;
    position: fixed;
    bottom: 0;
}

#footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-bottom: 6px;
}

#footer-list a{
  display: block;
  width: 32px;
  height: 32px;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  background-color:#232323;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
