body {
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    transition: all 1s ease-out;  
    margin: 0;
}

#wrapper {
    margin-top: clamp(10%, 5%, 15%);
    margin: 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 80vw;
    font-family: "Space Mono", monospace;
    #header {
        color: var(--primary);
        font-size: clamp(2.8rem, 2.2rem, 3.3rem);
        margin-top: 0;
        
    }
    #notice {
        color: var(--text-muted);
        font-size: clamp(1.6rem, 1rem, 2.1rem);
    }
}

#error {
    align-self: center;
    display: block;
    text-align: center;
    font-weight: 400;
    font-size: clamp(1.4rem, 0.8rem, 1.9rem);
    color: var(--text-muted);
    margin-top: 5vh;
    > a {
        color: var(--primary);
        pointer-events: all;
        user-select: none;
        position: relative;
        text-decoration: none;
    }
    > a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 1px;
        width: calc(100% + 1vw);
        background: linear-gradient(90deg, var(--primary) 75%, transparent 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.1s cubic-bezier(.8,.6,.85,.7);

        
    }
    > a:hover::after {
        transform: scaleX(1);
    }
}
