*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing:border-box;    
}
html, body{
    height: 100%;
    width: 100%;
    min-width: 300px ;
}
.conetendor_1{
    display: flex;
    flex-direction: row;
    align-content: space-between;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
    border: 2px solid blue;
}
.cab{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    height: 20%;
    max-height: 200px;
    width: 100%;
    border-bottom: 3px solid blue;
}

.cab > img{
    max-height: 50%;
    max-width: 50%;
    object-fit: contain;
}
.cuerpo_404{
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: calc(100% - 480px) ;
}
.cuerpo_404 > p{
    display: flex;
    justify-content: center;
    font-family: 'vag_round', sans-serif;
    margin-top: 20px;
    font-size: 16pt;
    text-align: center;
    width: 100%;
}
.cuerpo_404 > a{
    display: flex;
    font-family: 'vag_round', sans-serif;
    font-size: 14pt;
    text-align: center;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}
.footer_404{
    display: flex;
    width: 100%;
    height: 280px;
}
.footer_404 > img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width:550px) {
    .cuerpo_404 > p{
       font-size: 14pt;
    }
    .cuerpo_404 > a{
       font-size: 10pt;
    }    
}
/* p{
    font-family: 'vag_round', sans-serif;
} */
/* section{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

section > img{
  max-height: 500px;
  max-width: 500px;
}

section > h1{
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

@media screen and (max-width:550px) {
    section > img{
        max-height: 300px;
        max-width: 300px;
      }
    
} */