html, body {
    background-image: url(../img/back-desktop.png);
    background-size: contain;
    background-position:  center;
    background-repeat: no-repeat;
    background-attachment:fixed;
    background-color: #1A0E00;
    width: 100%;
    height: 100%;
    display:flex;
    flex-direction: column;
}

img {
    width: 25%;
}

p  {
    color: #fafafa;
    font-weight:800;
    font-size: 1.3rem;
    -webkit-text-stroke: 1.2px black;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0;
}


.container {
    width: 100%;
    height: 100%;
}

.row {
    text-align: center;
    align-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
}

.boton1 {
    vertical-align:middle;
    align-content: center;
    height: max-content;
    padding-top: 0px;
    text-align: center;
    padding-right: 0px;
    margin-top: 200px;
    width: 70%;
    margin-left: 110px;

}

.boton:hover {
    -webkit-transform:scale(0.9);
    transform:scale(0.9);
}

@media only screen and (max-width: 767px) {
    
    html, body {
    background-image: url(../img/back-mobile2.png);
    background-size: cover;
    background-position: top center;
    background-attachment: scroll;
    }
    img {
        width: 30%;
    }
    p {
        font-size: 1.3rem;
    }
    .boton1 {
        padding-top: 85vh;
        padding-right: 0px;
        text-align: center;
        padding-left: 0px;
        width: 100%;
        margin-left: 0px;

        
    }

    img {
        width: 85%;
    }

    

} 