@keyframes appear {
    from {
      opacity: 0;
    }
    to {
      opacity: 1
    }
}
/* 
@keyframes slideInLeft {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  } */

html, body {
    height: 100%;
    margin: 0; 
    font-family: Georgia, 'Times New Roman', Times, serif, sans-serif;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
}

header {
    flex: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #E5E5E5;
} 

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer {
    flex: 0;
    font-size: 10px;
    /* margin-top: 20px; */
}

#logo {
    padding-left: 30px;
}

#logo-text {
    font-family: 'Impact', sans-serif;
    margin-left: 15px;
    text-decoration: none;
    color: inherit;
}

#navbutton {
    padding-right: 45px;
    border: none;
}

.nav-item button {
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    width: 120px;
    margin-right: 30px;
    margin-left: 30px;
    margin-top: 8px;
}

.nav-item button:hover {
    background-color: #0056b3;
}

.nav-item button:active {
    background-color: #003366;
}

.nav-link {
    color: black !important;
}
  
.nav-link:hover {
    color: grey !important;
}

.nav-item {
    display: inline;
    margin-left: 10px;
}

footer #phone {
    margin-top: 20px;
}

.image-container {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}

.image-container img {
    max-height: 500px;
    height: auto;
    width: 100%;
    max-width: none;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    animation: appear 1s ease-out;
}

@media (max-width: 768px) {
    .overlay-text {
      font-size: 24px;
    }
}
  

#yellow-button {
    background-color: #FFD700;
    color: #003366;  
    padding: 10px 20px;    
    border: none;    
    border-radius: 5px; 
    font-size: 16px; 
    cursor: pointer; 
    transition: all 0.3s ease;
  }
  
#yellow-button:hover {
    background-color: #FFB800;
    color: #003366;
}

#first-p {
    max-width: 950px;
    text-align: center;
    margin: 20px;
}

#map-container p {
    max-width: none;
    margin-top: 10px;
}

#map-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 80%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}