* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: black;
    box-sizing: border-box;
}

header {
    height: 20vh;
    width: 100vw;
}

.navbar {
    position: absolute;
    top: 50px;
    padding: 0 50px 0 50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
}

.navbar .logo {
    font-size: 2em;
    font-weight: bold;
}

.navbar .nav-links ul {
    display: flex;
}

.navbar .nav-links ul li {
    margin: 0 25px;
}

.navbar .menu-burger {
    display: none;
    position: absolute;
    top: 50px;
    right: 50px;
    width: 35px;
}

.navbar .shopping-bag {
    display: none;
    position: absolute;
    top: 52px;
    right: 95px;
    width: 30px;
}

.contact form {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.contact input, .contact textarea {
    width: 80%;
    max-width: 80%;
    padding: 10px;
    border-radius: 8px;
    border-color: black;

}

.contact button {
    width: 80%;
    background-color: black;
    color: white;
    border-radius: 8px;
    height: 30px;
}

footer {
    background-color: rgb(153, 146, 146);
    margin-bottom: 0;
    padding: 10px;
}


.chiant {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.imgfooter {
    display: flex;
    justify-content: center;
}

.imgfooter img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    display: block;
}

@media screen and (max-width: 800px) {
    /* navbar */
    .navbar {
         padding: 0; 
         top: 10px;
    }

    .navbar .logo { 
        position: absolute; top: 50px; left: 50px; 
    }

    .nav-links .logo a {
         color: black; 
    }

    .navbar .menu-burger {
         display: block; 
    }

    .navbar .shopping-bag {
         display: block; 
    }
    
    .nav-links {
        top: 0; left: 0; 
        position: absolute;
        background-color: rgba(254, 254, 254, 0.95); 
        width: 100%; 
        height: 100vh;
        display: flex; 
        justify-content: center; 
        align-items: center;
        margin-left: -100%; 
        transition: all 0.5s ease;
        z-index: 10; 
    }

    .mobile-menu {
         margin-left: 0; 
    }

    .nav-links ul {
         display: flex; 
         flex-direction: column; 
    }

    .navbar .nav-links ul li {
         margin: 25px 0; 
         font-size: 1.2em; 
    }
}