﻿h3 {
    font-size: 1.25rem;
}


.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}


.hero-section p {
    font-size: 1.25rem;
    max-width: 1000px;
    text-align: center;
}


.main-section {
    padding-top: 10px;
    width: 100%;
    display: flex;
    align-items: start;
    justify-content: stretch;
    gap: 10px;
}


.category-list {
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}


.category-name {
    line-height: 2rem;
    font-size: 1.5rem;
    text-align: center;
    transition: all .5s ease;
    margin-bottom: 5px;
}


.category-name:hover {
    text-decoration: underline;
    text-shadow: 1px 1px 1px rgba(74, 74, 74, .5);
}


@media (max-width: 1000px) {
    .hero-section p {
        font-size: 1.25rem;
    }


    .main-section {
        flex-direction: column;
        align-items: center;
        justify-content: start;
    }


    .side-panel {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        width: 100%;
    }


    .category-list {
        border-bottom: none;
    }


    .category-name {
        font-size: 1.5rem;
    }

}


