body {
    display: grid;
    align-items: center;
    justify-items: center;
    background: url(/img/fundo.png) no-repeat center center;
    background-size: cover;
}
html {
    font-family: 'Quicksand', sans-serif;
    color: #fff;
    font-size: 0.75rem;
    line-height: 1em;
}

a {
    transition: .3s;
}
.mixtree-grid {
    display: grid;
    justify-items: center;
    padding: 60px 10px;
}
.whats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.whats a {
    height: 100px;
    width: 70px;
    padding: 10px;
    display: grid;
    justify-items: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    border-radius: 5px;
}
.whats a:nth-child(1) {
    box-shadow: 0px 0px 0px 2px #E23C48 inset;
}
.whats a:nth-child(4) {
    box-shadow: 0px 0px 0px 2px #E23C48 inset;
}
.whats a:nth-child(1):hover {
    box-shadow: 0px 0px 20px 40px #E23C48 inset;
}
.whats a:nth-child(4):hover {
    box-shadow: 0px 0px 20px 40px #E23C48 inset;
}
.whats a:nth-child(2) {
    box-shadow: 0px 0px 0px 2px #3F84E5 inset;
}
.whats a:nth-child(3) {
    box-shadow: 0px 0px 0px 2px #3F84E5 inset;
}
.whats a:nth-child(2):hover {
    box-shadow: 0px 0px 20px 40px #3F84E5 inset;
}
.whats a:nth-child(3):hover {
    box-shadow: 0px 0px 20px 40px #3F84E5 inset;
}
.whats a:hover svg path {
    fill-opacity: 1;
}
.whats a svg path {
    transition: .3s;
}
.redes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.redes a {
    flex: 1;
    max-width: fit-content;
    min-width: fit-content;
}
.redes a:hover {
    transform: scale(1.1);
}
.mixtree-grid > a {
    text-align: center;
    margin-top: 30px;
    max-width: 155px;
}
.mixtree-grid > a:hover {
    color: #3F84E5;
}
.mixtree-grid > img {
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}

@media only screen and (min-width: 370px) {
    
    .whats a {
        height: 170px;
        width: 140px;
        padding: 20px;
        gap: 10px;
        font-size: 1.8rem;
        justify-items: center;
        align-items: last baseline;
        line-height: 1em;
    }
    .whats a svg {
        transform: scale(1.5);
    }

    .whats a:nth-child(1):hover {
        box-shadow: 0px 0px 20px 70px #E23C48 inset;
    }
    .whats a:nth-child(4):hover {
        box-shadow: 0px 0px 20px 70px #E23C48 inset;
    }
    .whats a:nth-child(2):hover {
        box-shadow: 0px 0px 20px 70px #3F84E5 inset;
    }
    .whats a:nth-child(3):hover {
        box-shadow: 0px 0px 20px 70px #3F84E5 inset;
    }
    .mixtree-grid > a {
        font-size: 1.6rem;
        max-width: 250px;
    }
    .mixtree-grid > img {
        transform: scale(2);
    }
    .redes a {
        transform: scale(1.6);
    }
    .redes a:hover {
        transform: scale(1.8);
    }
    .redes {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

    .logo {
        transform: scale(1.5);
        margin-bottom: 30px;
    }

}