.fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
    animation-delay: 3s;
    /* wait 3 seconds */
}

.fas.fa-baseball-ball,
.fa-baseball-bat-ball,
.fa-calendar-days,
.fa-user,
.fa-dumbbell,
.fa-person-running,
.fa-people-group,
.fa-person-running,
.fa-whistle {
    font-size: 64px;
    color: #f23a2e;
    /* or whatever color you want */
}

.site-section .class-item {
    min-height: 100px;
    width: 100%;
}

#coach-section ul {
    color: black;
    display: inline-block;
    /* makes ul respect text-align */
    padding: 0;
    margin: 0;
    list-style: none;
    margin-left: 10px;
    margin-right: 10px;
}

#coach-section .class-item-text {
    text-align: center;
    width: 100%;
}

#coach-section h2 {
    font-size: 2em;
}

#coach-section .job-title {
    font-size: 1.5em;
}

#coach-section .coach-container {
    text-align: center;
    margin: 0 auto;
}

#coach-section .class-item .class-item-thumbnail img {
    max-width: 200px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 1000px) {
    #coach-section .container {
        display: flex;
        flex-direction: column;
    }

    .coach-container .class-item {
        display: flex;
        flex-direction: column;
        padding: 1em;
    }
}


#teams-section ul {
    color: black;
    display: inline-block;
    /* makes ul respect text-align */
    padding: 0;
    margin: 0;
    list-style: none;
    margin-left: 10px;
    margin-right: 10px;
}

#teams-section .class-item-text {
    text-align: center;
    width: 100%;
}

#teams-section h2 {
    font-size: 2em;
}

#teams-section .job-title {
    font-size: 1.5em;
}

#teams-section .coach-container {
    text-align: center;
    margin: 0 auto;
}

#teams-section .class-item .class-item-thumbnail img {
    max-width: 200px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 1000px) {
    #teams-section .container {
        display: flex;
        flex-direction: column;
    }

    .teams-container .class-item {
        display: flex;
        flex-direction: column;
        padding: 1em;
    }
}

.team-container {
    width: 80%;
    margin: 0 auto;
}

.team-container .class-item .class-item-text h2 a {
    color: #f23a2e;
}

.team-container .class-item:hover h2 a {
    color: #fff;
}

.footer-lists {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    /* optional spacing */
}

.footer-lists>div {
    flex: 1;
}