body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: black;
    color: white;
}

#container {
    text-align: center;
    padding: 1em;
    max-width: 600px;
    width: 100%;
}

#logo {
    max-width: 40%;
    height: auto;
    margin-bottom: 1em;
}

.glow {
    animation: pulseGlow 5s infinite;
    filter: drop-shadow(0 0 10px white);
}

@keyframes pulseGlow {
    0% {
        filter: drop-shadow(0 0 5px white);
    }

    50% {
        filter: drop-shadow(0 0 40px white);
    }

    100% {
        filter: drop-shadow(0 0 5px white);
    }
}

.glow-fade {
    animation: glowFadeOut 2.5s forwards;
}

@keyframes glowFadeOut {
    from {
        filter: drop-shadow(0 0 40px white);
    }

    to {
        filter: drop-shadow(0 0 0px white);
    }
}

#description {
    font-weight: bold;
    font-size: 2em;
    margin-bottom: 2em;
}

#app {
    background: rgb(20, 20, 20);
    padding: 1em;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

button {
    margin: 0.5em;
    padding: 0.5em 1em;
    font-size: 1em;
}

.smallerBtn {
    margin: 0.25em;
    padding: 0.25em 0.5em;
}