* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #02211a;
    color: #ffffff;
    font-family: "Courier New", Courier, monospace;
    font-size: clamp(8px, 2.5vw, 16px);
    line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100svh;
    padding: 20px;
}

a {
    color: #ffffff;
    transition: text-shadow 0.2s ease-out;
}

a:hover {
    text-shadow:
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 15px rgba(255, 255, 255, 0.4),
        0 0 20px rgba(255, 255, 255, 0.2);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.tagline {
    text-align: center;
}
