html {
    min-height: 100vh;
}
body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-optical-sizing: auto;
    font-style: normal;
}

h1 {
    font-size: 8vw;
}

@media (max-width: 768px) {
    h1 { font-size: 10vw; }
}

@media (max-width: 576px) {
    h1 { font-size: 14vw; }
}

section {
    min-height: 60vh;
    padding: 128px 0;
}

pre {
    border-radius: 0.5em;
    background: #222 !important;
    backdrop-filter: blur(1em);
    -webkit-backdrop-filter: blur(1em);
    border: 1px solid currentColor;
}

a {
    color: currentColor;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer {
    height: auto;
    min-height: unset;
    padding-bottom: 2em;
}

.footer ul {
    padding-top: 1em;
}

.footer li {
    padding: 0.5em 0;
    list-style: none;
}

.card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    background-color: #eeea;
    border: 2px solid #eee;
    color: #111;
    padding: 1em;
    flex-grow: 1;
    height: calc(100% - 1em);
    border-radius: 1em;
    backdrop-filter: blur(1em);
    -webkit-backdrop-filter: blur(1em);
    font-weight: 600;
    transition: background-color 200ms;
}

.card:hover {
    background-color: #eee;
}