.coach-header-title {
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    position: absolute;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    height: 100%;
    font-size: 5vmax;
    animation: fadeIn ease 2s;
    animation-fill-mode: forwards;
}

/* animation */

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translate3d(0, -50%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.coach-subtext {
    width: fit-content;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    margin: 5rem auto 0 auto;
    color: white;
    font-size: 2vmax;
    border-radius: 1rem;
}

.coach-title {
    padding: 40px 0;
}

.coach-bg {
    font-size: 18vw;
    font-weight: 800;
    display: block;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    -webkit-text-stroke-color: black;
    opacity: 0.15;
    color: transparent;
    -webkit-text-stroke-width: 2px;
}

.title-up {
    font-size: 4vw !important;
}

.title-down {
    font-size: 6vw !important;
}

.coach-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 3em;
    margin: 5vh 0;
}

.coachCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    

}
.coachCard{
    text-decoration: none;
    color: black;
}
.coachCard:hover{
    color: black;
}
.coachImg {
    overflow: hidden;
    width: 200px;
    height: 200px;
    background-color: greenyellow;
}
