*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:rgb(10,2,37);
    color:white;
}

a{
    text-decoration:none;
    color:white;
}

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#a0522d;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 40px;
    z-index:1;
}

.nav-left{
    display:flex;
    align-items:center;
}

.logo{
    width:45px;
    height:45px;
    border-radius:50%;
    margin-right:12px;
}

.nav-left h1{
    font-size:22px;
    color:white;
}

.navbar ul{
    display:flex;
    list-style:none;
}

.navbar ul li{
    margin-left:30px;
}

.navbar ul li a{
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.navbar ul li a:hover{
    background:white;
    color:#a0522d;
    padding:6px 12px;
    border-radius:6px;
}

.home{
    padding-top:120px;
    padding-bottom:60px;
}

.home-info{
    text-align:center;
    margin-bottom:50px;
}

.home-info h1{
    font-size:42px;
}

.card-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:35px;
    padding:20px;
}

.card{
    width:220px;
    background:#a3f725;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    cursor:pointer;
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px) scale(1.05);
    box-shadow:0 15px 30px rgba(0,0,0,.45);
}

.card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

.card p{
    color:black;
    padding:12px;
    font-size:16px;
    font-weight:bold;
}

footer{
    margin-top:40px;
}

.footer-container{
    background:#a0522d;
    color:white;
    text-align:center;
    padding:20px;
}

.home-img{
    display:flex;
    justify-content:center;
    margin-top:120px;
}

.home-img .img-box{
    width:280px;
    height:280px;
    border-radius:50%;
    overflow:hidden;
    border:5px solid #a3f725;
}

.home-img .img-box .img-item{
    width:100%;
    height:100%;
}

.home-img .img-box .img-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.info{
    width:90%;
    max-width:1000px;
    margin:40px auto;
    color:white;
}

.info .myinfo ul{
    list-style:none;
}

.info .myinfo ul li{
    margin-bottom:15px;
    font-size:18px;
    line-height:1.6;
}

.gallery{
    width:90%;
    max-width:1200px;
    margin:50px auto;
}

.gallery h1{
    text-align:center;
    font-size:45px;
    margin-bottom:40px;
}

.gallery iframe{
    width:100%;
    max-width:560px;
    height:315px;
    border-radius:10px;
    display:block;
    margin-bottom:30px;
}

.gallery iframe:hover{
    transform:scale(1.03);
    transition:.4s;
    box-shadow:0 15px 30px rgba(0,0,0,.4);
}

.gallery p{
    font-size:17px;
    line-height:1.7;
    text-align:justify;
}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        padding:15px;
    }

    .nav-left{
        margin-bottom:10px;
    }

    .navbar ul{
        gap:20px;
    }

    .home-info h1{
        font-size:30px;
    }

    .card{
        width:180px;
    }

    .card img{
        height:230px;
    }

    .gallery iframe{
        width:100%;
        height:250px;
    }
}

@media(max-width:480px){

    .navbar ul{
        flex-direction:column;
        align-items:center;
    }

    .card{
        width:90%;
        max-width:280px;
    }

    .card img{
        height:300px;
    }

    .home-info h1{
        font-size:24px;
    }
}