body {
    font-family: mulish;
    min-height: 100vh;
    max-height: 100vh;
    background-image: url(../assets/fondo-error.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    margin: 0;
    background-position: center;
}


.content-err {
    max-width: 1200px;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 1rem;
    margin: auto;
}

header {
    padding: 2rem;
}

.gif-err img {
    width: 30rem;
}

.text-err {
    display: flex;
    flex-direction: column;
    justify-content: left;
    color: white;
    width: 52%;
    margin: auto;


}

a {
    text-decoration: none;
}

.text-err h1 {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 0;
}

.text-err p {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.btn-err {
    display: flex;
    justify-content: left;
}

.btn-err button {
    cursor: pointer;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 0.5rem;
    align-content: center;
    padding: 0.8rem 1rem 0.8rem 1rem;
    background-color: #1A5C64;
    color: white;
    border: none;
    border-radius: 5px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

button img {
    width: 15px;
    margin-bottom: 2px;

}

@media only screen and (max-width: 767px) {
    .content-err {
        flex-direction: column;
        align-items: center;
    }

    .text-err p {
        font-size: 1.5rem;
        display: flex;
        text-align: center;
    }

    .text-err {
        width: 100%;
        align-items: center;

    }

    .gif-err img {
        width: 10rem;
    }

    header {
        display: flex;
        justify-content: center;
    }



}