* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    background-color: blueviolet;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.site {
    background-color: white;
    width: 1200px;
    align-content: center;
}

.linha {
    display: flex;
    justify-content: space-evenly;
  
    margin-bottom: 30px;
}

.produto {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 1px 1px 4px rgb(99, 99, 99);
}

.link_produto {
    margin: 15px 0 5px 0;
    font-size: 25px;
}

.botao-home {
    background-color: red;
    border: solid 2px blue;
    padding: 6px;
    text-decoration: none;
}

.botao-home:hover {
    background-color: orangered;
    
}

main {
    margin: 40px 0;
    padding: 0 40px;
}

/* Cabeçalho */

header {
    background-color: aquamarine;
    height: 100px;
    display: flex;
    justify-content: space-between;
}

.logo {
    background-color: aqua;
}

.pesquisa {
    background-color: blanchedalmond;
}

.acoes {
    background-color: orangered;
}

/* Rodape */
.subrodape {
    background-color: orangered;

    display: flex;
    justify-content: space-around;
}

.links ul {
    list-style-type: none;
}

.links {
    background-color: antiquewhite;
}

/* pagina de login/cadastro */

.login-cadastro {
    display: flex;
    justify-content: space-between;
}

.login {
    background-color: orangered;
    height: 100px;
    width: 580px;
}

.cadastro {
    background-color: brown;
    height: 100px;
    width: 580px;
}