body {
    display: grid;
    align-items: center;
    justify-items: center;
    background: url(/img/bg-renata.png) no-repeat center top;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 100px;

}

html {
    font-family: 'Merriweather', serif;
    font-size: 1.15rem;
    color: #fff;
}

a {
    transition: .3s;
}
.whats {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.whats a {
    width: 350px;
    padding: 12px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    position: relative;
    border-radius: 15px;
    box-shadow: 0px -100px 1px 1px #86847E inset;
}
.whats a:hover {
    color: #86847E;
    box-shadow: 0px 0px 5px 1px #86847E inset;
}
.whats a img {
    position: absolute;
    left: 20px;
    max-width: 40px;
}

.logo {
    display: grid;
    justify-items: center;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.logo img {
    max-width: 200px;
}


@media only screen and (max-width:390px) {

    .whats a {
        width: 250px;
        padding: 20px 0px;
    }
    html {
        font-size: 1rem;
    }
    .whats a img {
        position: inherit;
        left: 0px;
        max-width: 30px;
    }
    
}