header {
    background-color: var(--deep-space-blue);
}

body {
    font-family: 'Lato', sans-serif;
    text-align: center;
    /* background-color: #121826; */
    /* color: #fff; */
}
.error-container {
    max-width: 600px;
    background: var(--service-card-white);
    padding: 30px;
    margin: 95px auto;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(30, 7, 86, 0.5);
}
h1 {
    /* color: #ffda6f; */
}
.error-links {
    list-style: none;
    padding: 0;
}
.error-links li {
    margin: 10px 0;
}
.error-links a {
    color: var(--subtle-link);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}
.error-links a:hover {
    color: var(--amber-dark-hover)
}
.error-img {
    width: 100%;
    max-width: 300px;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .error-container {
        margin: 65px auto;
    }
}