html {
    min-height: 100%;
}

body {
    animation: fade-in 2s;
    background: linear-gradient(rgb(16, 16, 16), rgb(36, 32, 32));
    color: rgb(248, 248, 248);
    font: 125% monospace;
    text-align: center;
}

#result {
    margin-left: auto;
    margin-right: auto;
    max-width: 32em;
    border-style: inset;
    background: rgb(24, 24, 24);
    padding: 1em;
    text-align: left;
    font-weight: bold;
    white-space: pre-wrap;
}

@media screen and (min-width: 512px) {
    #result {
        font-size: 125%;
    }
}

a {
    color: rgb(128, 128, 247);
}

button {
    background: rgb(248, 248, 248);
    font: 100% monospace;
    color: rgb(32, 36, 32);
    height: 3em;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}