.error-page {
    min-height: max(80vh, 580px);
    background-size: cover;
    background-position: center;
    background-image: var(--error-bg-image);
    display: flex;        
}

.error-inner {
    width: 45%;  
    background-color: var(--site-background-color);
    box-sizing: border-box;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center
}

.error-404 {
    max-width: min(60%, 500px);
}

.error-title {
    margin: 0;
    line-height: 1.2
}

nav.error-404-navigation ul {
    padding-inline-start: 20px;
    color: var(--link-color);
}

nav.error-404-navigation li {
    font-size: 0.95rem;
    margin-bottom: 5px
}

nav.error-404-navigation a {
    text-decoration: none
}

nav.error-404-navigation a:hover {
    text-decoration: underline 1px
}

.aurora-lite-404-button {        
    padding: 15px 34px;
    border-radius: 4px;
    margin-top: 30px;
    text-transform: uppercase;
}

@media (max-width:768px) {
    .error-inner {
        width: 50%;
    }
}

@media (max-width:480px) {
    .error-inner {
        width: 100%;;
        border-radius: 5px;
        padding: 30px;
        height: fit-content;
    }

    .error-page {
        padding: 30px;
        flex-direction: column;
        justify-content: center;
        min-height: 100%
    }

    .error-404 {
        max-width: 100%
    }
}