﻿.section-title {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 1rem !important;
    font-weight: 500;
    line-height: 1.2;
    font-size: 2.5rem;
    text-align: center;
}

.nav-selected {
    background-color: var(--felt-color);
    text-decoration: none;
    font-weight: bold;
}

.nav-unselected {
    background-color: var(--medium-gray-color);
    text-decoration: none !important;
    border-radius: 0 0 20px 20px;
    transition: background-color 0.3s ease-in-out, border-radius 0.3s ease-in-out;
    border: 1px solid white;
    border-top: none;
}

    .nav-unselected:hover {
        background-color: var(--felt-light-color);
        text-decoration: none !important;
        border-radius: 0 0 10px 10px;
        border-bottom: none;
    }