
header{
    position: absolute;
    top: 0;
    left: 0;
}

main{
    padding-top: 80px;
    min-height: 64vh;
    overflow-x: hidden;
}

#fondo{
    height: 100%;
    min-height: 750px;
    width: 100%;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient( rgba(12,85,69,0.8), rgb(255,255,255)), url('../img/fondo404.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.error404 {
    width: 50%;
    min-width: 290px;
    background-color: var(--blanco);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 2px 2px 8px var(--negroClaro);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.error404 h1 {
    color: crimson;
}

.error404 p{
    font-size: 13pt;
}

.error404 a{
    text-decoration: none;
    margin: 0 auto;
}

@media screen and (max-width: 1270px){

    .error404 {
        margin-bottom: 38px;
    }

}
