@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Oswald:wght@200..700&display=swap');

*{
    box-sizing: border-box;
}
body{
    margin: 0;
    background-color: #0e0f10;
    color: #eef0f2;
    font-family: "Oswald",sans-serif;
}
main{
    height: 100vh;
    background-image: url(../imgs/fondo-mantenimiento.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 2em;
}
.container-arriba{
    position: relative;
}
.arriba-1{
    font-size: 8rem;
    margin: .2em 0 0 1rem;
}
.arriba-2{
    font-size: 2.6rem;
    margin: -.5em 0 .5em 1.8rem;
}
.tachado{
    position: absolute;
    bottom: 1.5em;
    left: 1.5em;
}
.container-info{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.texto{
    font-family: "Lato",sans-serif;
    margin-bottom: 0;
}
span{
    color: #dbf51d;
}
.logo{
    position: relative;
    padding: 1em 1em 0 1em;
}
.logo img{
    position: absolute;
    right: 1.2em;
    bottom: 3em;
}
.logo p{
    margin: 0;
    font-size: 6rem;
}


/*movil*/

@media (max-width:1141px){
    
    main{
        padding: 0 .8em;
    }
    .arriba-1{
        font-size: 5.4rem;
        line-height: 5.8rem;
    }
    .arriba-2{
        font-size: 2.6rem;
        margin: .2rem 0 .5em 1.8rem;
    }
    .container-info{
        flex-direction: column;
        align-items: flex-end;
    }
    .texto{
        margin: -1.4rem 1rem 2rem 0;
        order: 3;
    }
    span{
        color: #dbf51d;
    }
    .logo{
        text-align: end;
    }
    .logo img{
        order: 1;
        position: absolute;
        width: 50%;
        bottom: 5.4em;
    }
    .logo p{
        margin-bottom: 1em;
        font-size: 3.2rem;
        order: 2;
        z-index: 0;
    }
}