/* Base styles */
html, body {
  padding: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5); 
  font-family: "europa", sans-serif;
}







/* Site content */
/* Site content */
#site-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 65px;
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5); /* Transparent background */
  
  -webkit-box-shadow: #000 0 7px 35px 0;
  -moz-box-shadow: #000 0 7px 35px 0;
  box-shadow: #000 0 7px 35px 0;
  
  backdrop-filter: blur(5px);
  filter: blur(0px);
}

#site-content h1 {
  color: #F7A940;
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}

#site-content ul {
  padding: 0;
  text-align: center;
}

#site-content li {
  color: #fff;
  font-size: 2.5rem;
  margin: 10px 0;
  list-style-type: disc;
  display: inline-block;
  text-align: center;
}


#site-content a {
  color: #72787E;
  text-decoration: none;
  transition: color 0.3s;
}
/* Footer styles */
#site-footer {
  padding: 0 0;
  font-size: 0%;
  background-color: transparent;
  position: fixed;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
}

#site-footer {
  min-height: 100%; 
  width: 100%; 
  background-color: #000;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

#site-footer img {
  position: block; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* Responsive styles */
@media (max-width: 1200px) {
  #site-content h1 {
    font-size: 2rem; /* Adjust font size for smaller screens */
  }

  #site-content li {
    font-size: 1rem;
    text-align: center; /* Adjust font size for smaller screens */
  }

  #site-footer img {
    width: 100vw;
    margin: 15rem auto 0; /* Adjust image size for smaller screens */
  }
}

@media (max-width: 768px) {
  #site-content h1 {
    font-size: 2rem;
     /* Further adjust font size for mobile devices */
  }

  #site-content li {
    font-size: 1rem; 
    text-align: center;/* Further adjust font size for mobile devices */
  }

  #site-footer img {
    width: 100vw;
    height: 100vh;
    margin: 15rem 15rem 0;
   
  }
}

@media (max-width: 480px) {
  #site-content h1 {
    font-size: 2rem; /* Further adjust font size for very small screens */
  }

  #site-content li {
    font-size: 1rem;
    text-align: center; /* Further adjust font size for very small screens */
  }

  #site-footer img {
    width: 100vw; 
    margin: 15rem auto 0;/* Further adjust image size for very small screens */
  }
}
