body {
    background-color: #000000;
    color: #ffffff;
    font-size: clamp(0.8rem, 0.9vw, 2rem);
    font-family: 'Orbitron', sans-serif;
    user-select: none;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
    max-width: 100%;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main {
    padding: 2rem;
    flex: 1;
}

.center {
    text-align: center;
}

::-webkit-scrollbar {
    display: none !important;
}

a {
    color: #ff00ff;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

a:hover {
    color: #ffffff;
    border-color: #ffffff;
}
