@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Open Sans', sans-serif;
}
#errorcuerpo{
    display: flex;
    width: 100%;
    /* align-items: center; */
    text-align: center;
    justify-content: center;
   /* align-content: center; */
}

.logo{
    width: 100%;
}
.logo img{
    width: 80%;
}

#errorpagina{
    width: 70%;
    justify-content: center;
    text-align: center;
    align-items: center;
}

#errordatos{
    
    width: 100%;
    text-align: center;
    justify-content: center;
}

#errordatospagina{
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    align-items: center;
}



@media (min-width:800px){
    /* #errordatos{
        width: 100%;
         
    } */
    #errordatospagina{
        flex-direction: row;
        width: 70%;
    }
    #errordatospagina logo{
        width: 50%;
    }
}