*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}

body{
    min-height: 100vh;
    width: 100%; 
    background-image: url(./menupc.jpg);
    background-size: cover ;
    background-repeat: no-repeat;
    background-position: center;
}
header{
    height: 20%;
    width: 100%;
    display: flex;
    gap: 40%;
    /* background-color: aqua; */
    background-color: black;
}

header img{
    height: 70px;
    width: 150px;
    margin-left: 40px; 
    /* background-color: black;   */
    background-color: aliceblue; 
}


nav ul{
    width: 400px;
    display: flex;
    justify-content: space-evenly;
    gap: 15%;
    /* background-color: brown; */
    margin-top: 20px;
}

nav a{
    text-decoration: none;
    color: white;
    font-weight: bolder;
}
nav li{
    list-style-type: none;
}


h2{
    color: white;
    text-align: center;
    font-size: 38px;
}

h5{
    color: rgba(255, 255, 255, 0.911);
    text-align: center;
    font-size: 20px;margin-top: 10px;
}


.aboutus img {
    width: 450px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
}

.about ul {
    list-style: none;
    margin-bottom: 10px;
}

.about li {
    font-size: 22px;
    font-weight: bold;
    position: relative;
    padding-left: 25px;
    color: white;
    margin-top: 15px;
}

.about li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background-color: orange;
    border-radius: 50%;
}


.aboutus{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;

}


.about p{
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* ================= TABLET VIEW ================= */
@media (max-width: 1024px) {

    header{
        gap: 20%;
        padding: 10px;
    }

    nav ul{
        width: 300px;
        gap: 10%;
    }

    .aboutus{
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .aboutus img{
        width: 350px;
    }

    .about{
        padding: 0 20px;
    }
}



@media (max-width: 768px) {

    header{
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }

    header img{
        margin-left: 0;
    }

    nav ul{
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    h2{
        font-size: 28px;
        margin-top: 20px;
    }

    h5{
        font-size: 16px;
    }

    .aboutus{
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .aboutus img{
        width: 100%;
        max-width: 300px;
    }

    .about li{
        font-size: 18px;
    }

    .about p{
        font-size: 14px;
    }
}


