
*{
    padding: 0px;
    margin: 0px;
    border: none;
    text-decoration: none;
    outline:none;
    box-sizing: border-box;
    position: relative;
    font-family: "Roboto", sans-serif;
    list-style-type: none;
    
}
body{
    height: 100svh;
    max-height: 100svh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr ;

}
header{
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #091057;

}
nav a{
    color: white;
    margin: 5px;
   
}
.inputsearch{
    border-radius: 5px;
    height: 25px;
    width: 190px;
    padding: 4px;
    border: 2px solid #024CAA;
    font-weight: bold;
}
main{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap:5px;

}
.product-card{
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    /* background-color: antiquewhite; */
    box-shadow: 0 0 10px 0 #c7bebe;
 
}
.product-card:hover{
    transform: scale(1.01);
}
footer{
    padding: 10px;
    display: flex;
    justify-content: center;
    background-color: #DBD3D3;
    height: 100px;
}
footer p{
    font-size: 22px;
    font-weight: bold;
    color: white;
}
.categories{
    background-color:#024CAA ;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    align-items: center;

}
.category{
    margin: 10px 2px;
    background-color: white;
    border-radius: 15px;
    padding: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;

}
.category:hover{
    background-color: #133E87;
    color: white;
    box-shadow: 0 0 8px 0 white;
}
