body
{
    background-color: var(--starry-bg-color);
}
body > section
{
    padding: 20vw;
    background-color: white;
    min-height: 100vh;
}
body > section .container
{
    width: 50vw;
    margin: 0 auto;
}

body > section .sky-container .atmosphere
{
    --ratio: 1;
}
header .logo .right
{
    filter: invert(0);
}
body > section .sky-container .cloud svg *
{
    fill: #222222;
}

/* Hero Section */
body > section .error-section {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    mix-blend-mode: exclusion;
}

body > section .error-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}


body > section .error-title {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 1.5em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
}

body > section .error-description {
    font-size: 1.3em;
    margin-bottom: 3em;
    opacity: 0.9;
    line-height: 1.8;
    transform: translateY(30px);
}

body > section .cta-buttons {
    display: flex;
    gap: 1.5em;
    justify-content: center;
    flex-wrap: wrap;
}

body > section .btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 1.2em 2.5em;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    background: white;
    color: black;
    box-shadow: 0 0px 30px rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: unset;
    transition: all 0.3s ease-out;
}

body > section .btn-primary:hover, .btn-secondary:hover {
    
    background: black;
    color: white;
    border: white solid 1px;
}
.place-holder-100-100
{
    width: 100%;
}

.burger div
{
    background-color: white;
}

/* Responsive */
@media (max-width: 960px) {
    body > section .error-content {
        max-width: 95vw;
        width: 95vw;
        margin: 0 auto;
    }
}
@media (max-width: 896px) {
    
}
@media (max-width: 768px) {
    
}
@media (max-width: 640px) {
    
}
@media (max-width: 512px) {
    
}