html,
body {
    margin: 0;
    padding: 0;
    background: #10141b;
    overflow: hidden;
    width: 100%;
    height: 100%;
    font-family: 'Nunito', sans-serif;
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: #10141b;
    pointer-events: none;
}

.redirect {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 20px;
}

.redirect__prompt {
    margin: 0;
    color: #586581;
    font-size: clamp(18px, 3.2vw, 28px);
    letter-spacing: 0.02em;
}

.redirect__link {
    color: #f4f8fc;
    text-decoration: underline dotted;
    text-decoration-color: #686868;
    text-underline-offset: 4px;
    font-size: clamp(18px, 3.2vw, 28px);
    transition: color 0.3s ease;
}

@media (hover: hover) {

    .redirect__link:hover {
        color: #9be8ff;
    }

}

@media (max-width: 600px) {
    .redirect__prompt,
    .redirect__link {
        font-size: clamp(22px, 6vw, 32px);
    }
}