* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}


header{
    background-color:#e7d2b2;
    margin-bottom: 16px;
    
}

header h2{
    max-width: 1000px;
    width: 100%;
}

section{
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
}

.logo {
    font-family: 'Stardos Stencil', sans-serif;
    font-size: 3rem;
    color: #e7d2b2;
    letter-spacing: 2px;
    background: linear-gradient(to right, #1f1f1f, #444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu li{
    float: right;
    list-style: none;
    padding: 8px;
    font-size: 18px;
}

.clear{
    clear: both;
}


.about {
    display:flex;
    justify-content: center;
    align-items: center;
    max-width: 920px;
    width: 100%;
}

.about img{
    max-width: 1024px;
    min-width: 300px;
    width: 100%;
}

.about li{
    padding: 5px;
    list-style: none;
}


.produtos{
}

.produtos ul{
    display: grid;
    grid-template-columns: repeat(4, 22%);
    column-gap: 1%;
    list-style: none;
    
}

.produtos li{
    max-width: 200px;
    width: 100%;
    gap: 1px;
}
.produtos img{
    max-width: 200px;
    width: 100%;
}

.produtos h1{
    font-size: 24px;
}

.produtos h3{
    font-size: 12px;
}

@media screen and ( max-width: 767px) {
    .produtos ul{
    display: block;
    justify-items: center;
    margin-bottom: 16px;
    }

    .produtos ul img{
        width: 300px;
    }

    .container{
        max-width: 90%;
    }
    
    .about {
        margin-bottom: 56px;
        display: block;
    }

    .about ul{
        font-size: 0.7em;
    }

    .about img{
        margin-right: 0;
    }
}

@media screen and (min-width:768px) and (max-width: 1023px){
    .container{
        max-width: 90%;
    }

    .about {
        font-size: 0.9em;
    }

    .produtos ul{
        grid-template-columns: repeat(2, 49%);
    }
}
