.error-section {
    display: flex;
    justify-content: space-around;
    padding: 0 20px;
    gap: 40px;
    height: 70vh;
    align-items: center;
    color: var(--color-header);
}

.error-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.error-image {
    display: block;

    img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        max-height: 400px;
    }
}

.link-button {
    background-color: var(--color-principal);
    border-radius: 5px;
    color : var(--color-enfasis);
    width: max-content;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;

    &:hover {
        transform: rotate3d(0, 0, 1, 5deg);
    }
}

@media (width <=768px) {
    .error-section {
        flex-direction: column;
    }
}