@import url('reset.css');
@import url('https://fonts.googleapis.com/css2?family=Gowun+Batang:wght@400;700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
 
* {
    margin: 0;
    padding: 0;
}
 
body {
    font-family: "Poppins", sans-serif;
    background-color: aliceblue;
}
 
nav {
    background-color: rgb(28, 8, 48);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 8vh;
}
 
a {
    color: rgb(185, 40, 158);
    text-decoration: none;
    transition: 1s;
}
 
a:hover {
    opacity: 0.7;
    background-color: rgb(99, 24, 97);
}
 
.logo {
    text-transform: uppercase;
    letter-spacing: 4px;
}
 
ul {
    display: flex;
    list-style: none;
    gap: 30px;
    letter-spacing: 1px;
}


:root {
    --cor-fundo: #d5d5c9;
    --cor-texto: #1d1d1d;
    --cor_fundo-card: #dededd;
    font-size: 14px;
    
}


body{
    font-family: 'Montserrat', sans-serif;
    background-color:  rgb(114, 114, 180);
    color: rgb(6, 6, 6);
}
 
main{
    padding: 20px;
}
 
h2, h3, strong{
    font-weight: bold;
}
 
h2{
    /* Rem: unidade de medida relativa ao font-size do elemento raiz (html) */
    font-size: 1.75rem;
    text-align: center;
}
 
h3{
    /* em: Unidade de medida relativa ao font-size do elemento imediatamente pai */
    font-size: 1.5em;
}
 
.produto-lista{
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
 
.produto-lista .produto img{
    width: 180px;
    border-radius: 14px;
}
 
.produto-lista .produto{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    padding: 20px;
    gap: 18px;
    width: 200px;
    background-color: #fbfbf8;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.5) ;
    transition: 0.4s;

}

.produto-lista .produto:hover {
    cursor: pointer;
    transform: scale(1.05);
    background-color: rgb(133, 167, 212);
}
 
.produto-lista, .produto span{
    text-align: justify;
}