h1, ul {
    text-align: center;
}

h1 {
    margin: 5vh 0;
}

ul {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

li {
    width: 300px;
    margin: 20px;
    transition: transform .5s ease-out;
}

li:hover {
    transform: scale(1.1);
}

@media (prefers-color-scheme: dark) {
    li {
        color: var(--fg);
        background-color: var(--bg-2);
        border: none;
    }

    li:hover {
        box-shadow: none;
    }
}

li a {
    text-decoration: none;
    font-size: 2rem;
}
