@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&family=DynaPuff:wght@400..700&family=Itim&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Rubik+Wet+Paint&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
}
.mobile{
    display: none;
}
.about{
    color: black;
}
/* Nav Bar Start */
nav{
    display: flex;
    justify-content: space-between;
    align-content: center;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    height: 70px;
    background: white;
    width: 100%;
    z-index: 1000;
}
.link{
    place-content: center;
}
.link ul{
    display: flex;
}
.link ul li{
    list-style: none;
    margin: 0px 15px;
}
.link ul li a{
    text-decoration: none;
    color:#6A6666;
}
.link ul li .home{
    color: black;
}
.link ul li a:hover{
    color: black;
}
.link ul li a:active{
    color: black;
}
.button{
    display: flex;
}
.button a{
    text-decoration: none;
    color: white;
}
.button button i{
    margin-right: 10px;
}
.button button{
    display: flex;
    justify-content: space-evenly;
    place-items: center;
    margin: 0px 2px;
    padding: 5px 10px;
    background: white;
    color: black;
    border-radius: 4px;
    height: 30px;
    width: auto;
}
.button button:hover{
    color: white;
    background-color: black;
}
.container h1{
    text-align: center;
    margin-top: 70px;
    margin-bottom: 10px;
}
.product h1{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}
.content{
    border-top: 2px solid black; 
    margin: 0px 50px;
}
p{
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
    color: black;
    line-height: 1.5;
    font-weight: 300;
    font-size: 14px;
}
.card-container{
    display: flex;
    justify-content: space-evenly;
    place-items: center;
    padding: 0px 50px;
}
.card{
    border: 2px solid gray;
    border-radius: 4px;
    cursor: pointer;
}
.card p{
    font-size: 15px;
    font-weight: 700;
}
.card-container img{
    width: 240px;
    height: 150px;
}
footer{
    margin-top: 50px;
    text-align: center;
    margin-bottom: 50px;
}
@media screen and (min-width:350px) and (max-width:450px){
    nav{
        display: none;
    }
    .mobile{
        display: flex;
        justify-content: flex-start; 
        font-size: 12px;
        align-items: center;
        padding: 2px 2px;
     }
     .mobile .link li{
         padding: 2px 2px;
         margin: 2px 5px;
     }
    .mobile .button a button{
        place-content: center;
        padding: 8px 14px;
        height: 5px;
        width: 5px;
        font-size: 8px;
    }
    nav h1{
        font-size: 13px;
    }
    h1{
        font-size: 18px;
    }
    .content p{
        font-size: 12px;
    }
    .card-container{
        display: grid;
        row-gap: 10px;
    }
    .cart-item{
        margin: 0;
    }
}