.full-nav ul li:nth-child(5){
    text-decoration: underline;
}

.training-top img {
    width: 100%;
}
.training-bottom {
    position: relative;
    color: white;
}
.training-bottom img{
    width: 100%;
    filter: brightness(40%);
}
.training-bottom-words{
    position: absolute;
    top: 0px;
    left: 10%;
}
.class-selection {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.each-class {
    width: 200px;
    height: 250px;
    margin: 2px;
    border-radius: 2px;
}
.each-class:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.each-class p {
    color: black;
}

.each-class img{
    width: 200px;
    height: 200px;
    object-fit: cover;
}
.each-class:hover img {
    content: attr(data-hover);
}




@media only screen and (min-width: 800px) {
    .each-class {
        width: 300px;
        height: 350px;
    }
    .each-class img {
        width: 300px;
        height: 300px;
        object-fit: cover;
    }
    
    .training-bottom img {
        height: 600px;
        object-fit: cover;
        object-position: 50% 70%;
    }
    .training-bottom-words {
        font-size: 1.75rem;
    }
}