body {
    background-image: url("../assets/img/fundo.png");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.content {
    width: 100vw;
    height: 100vh;
    gap: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.bonecos {
    width: 100%;
    max-width: 750px;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -15px;
}

.bonecos img {
    width: 100%;
    height: auto;
}

.logo {
    width: 80%;
    max-width: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: auto;
}

@media screen and (min-width:1000px){
    body {
        background-image: url("../assets/img/fundo.png");
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
    }
    
    .content {
        margin-left: 30%;
        width: 40vw;
        height: 100vh;
        gap: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .bonecos {
        width: 90%;
        max-width: 750px;
        gap: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: -15px;
    }
    
    .bonecos img {
        width: 100%;
        height: auto;
    }
    
    .logo {
        width: 80%;
        max-width: 650px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo img {
        width: 100%;
        height: auto;
    }

}