* {
    font-family: "Ubuntu", "Consolas", monospace;
    color: #ddd;
}

:root {
    font-size: 16px;
    font-size: max(min(2vw, 2vh), 8px);
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #222;
}

main {
    max-width: 40rem;
    margin: auto;
    padding: 0 1rem;
}

h1,
h2 {
    font-family: "Saira Extra Condensed", "Ubuntu", "Consolas", monospace;
    margin: 0.5rem 0;
    text-align: center;
    line-height: 1;
    font-weight: 600;
}

p {
    line-height: 1.5;
    margin: 0;
}

a {
    color: #3bb;
}

.button {
    display: inline-block;
    box-sizing: border-box;
    border: 0.25rem solid #ddd;
    border-radius: 0.5rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: #ddd;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.button:hover {
    background-color: #ddd;
    color: #222;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateY(1rem);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}