﻿.landing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.mode-cards {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, 12rem));
    justify-content: center;
    align-items: stretch;
    margin-top: 1rem;
    width: 100%;
    max-width: 60rem;
}

.mode-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--answer-input-border-color);
    border-radius: .5rem;
    padding: 1rem .5rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
    overflow: hidden;
}

.mode-card:hover {
    outline: 2px solid var(--title-letter-border-color);
}
