body {
    background: url(/img/fundojg.jpg) no-repeat bottom center;
    background-size: cover;
    display: grid;
    align-items: center;
    font-weight: 700;
    font-family: 'Jaldi', sans-serif;
    font-size: 1.4rem;
    color: #0B1745;
}
.mixtree {
    padding: 0px 10px;
}
.mixtree-grid {
    padding: 40px 60px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    justify-content: center;
    background-color: rgba(11, 23, 69, .9);
    grid-gap: 15px;
    border-radius: 20px;
}
.mixtree-grid > a {
    background: linear-gradient(270deg, #EEB249 9.38%, #e4923b 33.92%, #FEEE96 69.2%, #EFBF4A 100%), linear-gradient(270deg, #EEB249 9.38%, #C27D32 48.73%, #EFBF4A 100%);
    display: flex;
    grid-gap: 10px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px 120px;
    border-radius: 10px;
    height: 40px;
    transition: .4s;
}
.mixtree-grid > a:hover {
    background-position: -390px;
}
.mixtree-grid > div:last-child {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
}
.mixtree-grid > div:last-child img{
    max-width: 40px;
    transition: .2s;
}
.mixtree-grid > div:last-child img:hover{
    transform: scale(1.1) ;
}

.logo {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    transition: .5s;
}


/* responsivo com imagens e redes sociais */

@media only screen and (min-width:375px) and (max-width:530px) {

    .mixtree-grid > a {
        justify-content: center;
        padding: 10px 60px;
    }

    body {
        font-size: 1.1rem;
    }
    
}
@media only screen and (min-width:301px) and (max-width:374px) {

    .mixtree-grid > a {
        justify-content: center;
        padding: 10px 40px;
    }
    body {
        font-size: 1.1rem;
    }

    .mixtree-grid {
        padding: 30px 40px;
    }
    
}
@media only screen and (min-width:0px) and (max-width:300px) {

    .mixtree-grid > a {
        justify-content: center;
        padding: 10px 40px;
    }
    body {
        font-size: 1rem;
    }

    .mixtree-grid {
        padding: 25px 35px;
    }
    
}