@media (max-width: 600px) {
    body{
        overflow: auto !important;
    }

    main {
        min-height: 700px !important;
    }
}

h2{
    color: white;
    font-size: 30px;
    margin: 0;
}

h3{
    display: flex;
    color: white;
    justify-content: center;
}


h4{
    margin: 0;
}

p{
    margin: 0;
}

html{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    height: 100vh;
    margin: 0;
    background-color: black;
    overflow: hidden;
}

header{
    background-image: linear-gradient(rgb(29, 29, 29), rgb(61, 61, 61));
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

header > img{
    height: 80px;
}

main {
    background-color: black;
    min-height: 70%;
    margin: auto;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

ul{
    margin: 0;
    padding: 0;    
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 40px;
}

.main__list{
    display: flex;
    list-style: none;
    height: 200px;
    width: 300px;
    border: solid black 1px;
    margin: 15px;
    border-radius: 25px;
    transition: 0.5s;
}

.main__list:hover{
    display: flex;
    height: 220px;
    width: 330px;
    transition: 0.5s;
}

#main__list--cafeartegrao{
    background-image: linear-gradient(rgb(217, 138, 4), rgb(217, 138, 41));
}

#main__list--tapetes{
    background-image: linear-gradient(rgb(29, 29, 29), rgb(61, 61, 61));
}

.main__list--img{
    display: flex;
    height: 150px;
    width: 150px;
}

.main__list--block{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    flex: 1;
}

.main__list--link{
    width: 100%;
    height: 100%;
}

footer{
    background-image: linear-gradient(rgb(61, 61, 61), rgb(29, 29, 29));
    min-height: 20%;
    color: white;
    display: flex;
    justify-content: center;
    padding: 20px;
    text-align: center;
}