html {
    font-family: regulator-nova,sans-serif;
}
body {
    display: grid;
    justify-items: center;
    align-items: center;
    background: url(/img/fundo2.webp)no-repeat center center;
    background-size: cover;
}
.main-grid {
    display: grid;
    justify-items: center;
}
.logo {
    max-width: 200px;
}
.insta {
    max-width: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    transition: .3s;
}
.insta:hover {
    transform: scale(1.1);
}
.main-content {
    display: grid;
    grid-gap: 20px;
    max-width: fit-content;
    position: relative;
    z-index: 10;
}
.main-content a {
    background-color: #423F3D;
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 2px #F4A14E;
    text-align: center;
    transition: .3s;
}
.main-content a:hover {
    background-color: #F4A14E;
}
.main-content a:nth-child(6):hover img:nth-child(2) {
    opacity: 0;
}
.main-content a:nth-child(6):hover img:nth-child(1) {
    opacity: 1;
}
/* color: #F4A14E; */
.main-content a:nth-child(6) {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    
}
.main-content a:nth-child(6) img {
    max-width: 30px;
    transition: .3s;
}

.main-content a:nth-child(6) img:nth-child(2) {
    opacity: 1;
}
.main-content a:nth-child(6) img:nth-child(1) {
    position: absolute;
    opacity: 0;
}
.main-content a:nth-child(6) p span {
    font-size: .9rem;
}
.sit {
    position: absolute;
    top: -40px;
    left: -20px;
    max-width: 60px;
    z-index: -1;
}
.end {
    position: absolute;
    z-index: -1;
    right: -50px;
    top: 60px;
    max-width: 60px;
}
.wh {
    position: absolute;
    z-index: -1;
    max-width: 60px;
    left: -50px;
    bottom: -5px;
}

@media only screen and (max-width:350px) {

    .main-content a {
        font-size: .9rem;
        padding: 10px 20px;
    }
    .logo {
        max-width: 150px;
    }
    
}