
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    background-color: black;
    color: white;
    font-family: 'Orbitron', 'Notable';
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
}

.text {
    font-size: 5rem;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8); 
    white-space: nowrap;
}

footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: white;
}

footer a {
    color: #1e90ff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    .text {
        font-size: 3rem;
    }
}
