@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
body {
    font-family: sans-serif;
    background: #f8f8f8;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #8f00f2;
    color: white;
    padding: 1em;
}

header h1 {
    font-size: 3em;
    margin-block: 0;
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2em;
    }
}

header .login {
    text-align: center;
}

main {
    background: white;
    margin: 20px;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Orbitron", sans-serif;
}

h2 {
    margin-top: 0;
}

a.button {
    background: #00c3ff;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

a.button:hover {
    background: #33cfff;
}