* {
    margin: 0;
    padding: 0;
    background-color: skyblue;
}

body {
    font-family: "Poppins", sans-serif;
}


nav {
    background-color: #0A3D62; 
    color: white;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
}

h1, ul, li, h5 {
    display: inline;
    background-color: #0A3D62;
    color: white;
}

ul {
    margin-left: 40%;
}

.nothome {
    margin-left: 70%;
}

li {
    padding: 5px;
    border-radius: 5px;
}

li:hover {
    background-color: #1E90FF; 
    color: white;
    padding: 8px;
    border-radius: 5px;
    transition-duration: 0.3s;
    cursor: pointer;
}

.navbar {
    background-color: #0A3D62;
    color: white;
    padding: 5px;
    border-radius: 5px;
}

.navbar:hover {
    background-color: #1E90FF;
    color: white;
    padding: 8px;
    border-radius: 5px;
    transition-duration: 0.3s;
    cursor: pointer;
}

.title {
    background-color: #f1f1f1; 
    color: #0A3D62; 
    border-radius: 5px;
    margin: 10px 0;
    padding: 5px;
    display:flex;
    flex-direction:row;
    justify-content:center;
    height:fit-content;
    width:fit-content;
    position:sticky;
    top:px;
}

.describe {
    background-color: white;
    color: #333;
    border-radius: 5px;
    margin: 20px;
    padding: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.describe1, table, tr, td {
    background-color: white;
    color: #333;
    border-radius: 5px;
    margin: 20px;
}

.photo, .photo2{
    background-color: skyblue;
    color: #0A3D62;
    border-radius: 5px;
    margin: 20px;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
}

.photo img {
    width: 575px;
    height: 575px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.photo2 img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.button {
    padding: 5px 12px;
    border-radius: 5px;
    background-color: #FF6B6B;
    color: white;
    border: none;
}

.button:hover {
    background-color: #006400; 
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    transition-duration: 0.3s;
    cursor: pointer;
} 

@media screen and (max-width:480px){
    .button{
        padding-block-end: 3px 10px;
        border-radius:5px;
        background-color:#FF6B6B;
        color:white;
        border:none;
    }

    .button:hover {
        background-color: #006400; 
        color: white;
        padding-block-end: 8px 15px;
        border-radius: 5px;
        cursor: none;
    } 
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin-top: 50px;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 35s linear infinite;
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

.img {
    flex: 0 0 auto;
    width: 350px;
    height: 450px;
    border-radius: 8px;
    margin: 0 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-container {
    display: flex;
    justify-content: center;
    margin-top:30px;
    margin-bottom:30px;
}

iframe {
    border-radius: 10px;
    border: 2px solid #0A3D62;
    width: 600px;
    height: 450px;
    margin-bottom: 30px;
    padding-bottom:100px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}