#header-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#header-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    flex-grow: 1;
    gap: 20px;
}

#header-link h1 {
    flex-grow: 1;
    text-align: center;
    font-size: clamp(2.25rem, 4.69vw + 1rem, 3.00rem);
    color: var(--primary-color);
}

#header-container {
    margin-bottom: 2rem;
}

#reset-btn {
    margin-top: 0;
    text-decoration: none;

    span {
        height: 100%;
        display: flex;
        align-items: center;
    }

    &.hidden {
        display: none;
    }
}