*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 16px;
}
body{
    padding: 20px;
    background-color: aqua;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 50px;
}
#preço{
    font-size: 2rem;
    text-align: left;
    margin-top: 2%;
    height: 10%;
    text-align: center;
    border: 1px solid;
    border-color: black;
}
#produto-nome{
    font-size: 1rem;
    text-align: center;
    height: 15%;
    margin-top: 2%;
    word-wrap: break-word;
    border: 1px solid;
    border-color: black;
}
#card{ 
    background-color:chocolate;
    margin: 10px;
    border-radius: 10px;
    color: rgb(5, 0, 0);
    transition: all 0.3 ease;
    width: 300px;
    height: 420px;
    padding: 10px;
    border: 3px solid;
    border-color: black;
    box-sizing: border-box;
}
#produto-img{
    
    width: 100%;
    height: 60%;
    border-radius: 3%;
    align-items: center;
    transition: all 0.3 ease;
      
}
#card:hover{
    transform: scale(1.2);
}
@media (max-width: 760px){
    html{
    font-size: 9px;
}
    #card{ 
    background-color:chocolate;
    margin: 5px;
    border-radius: 10px;
    color: rgb(5, 0, 0);
    transition: all 0.3 ease;
    width: 105px;
    height: 220px;
    padding: 5px;
    border: 2px solid;
    border-color: black;
    box-sizing: border-box;

}}

@media (max-width: 1080px){
    html{
    font-size: 12px;
}
    #card{ 
    background-color:chocolate;
    margin: 5px;
    border-radius: 10px;
    color: rgb(5, 0, 0);
    transition: all 0.3 ease;
    width: 200px;
    height: 310px;
    padding: 5px;
    border: 2px solid;
    border-color: black;
    box-sizing: border-box;

}}

#botaocomprar{
    text-align: center;
    width: 100%;
    height: 10%;
    margin-top: 2%;
    font-size: large;
    background-color: rgb(7, 224, 0);
    color: darkblue;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    font-size: 1rem;
    
    transition: all 0.3 ease;
}
#botaocomprar:hover{
    transform: scale(1.0);
    color: #ff0202;
    background-color: darkgreen;
}
#logotipo{
    text-transform: uppercase;
    align-items: center;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10 30px;
    display: flex;
    background-color: rgb(6, 178, 201);
    text-align: center;
}
#imglogo{
    width: 50px;
    height: 50px;
    padding: 5px;
    border: 5px;
    border-color: black;
    border-radius: 25%;
    transition: all 0.3 ease;

}
#imglogo:hover{
    transform: scale(1.2);
    
}
#nomeloja{
    text-align: center;
    margin-right: 30px;


}