/* Gym 2022 */

main {
    height: 500px;
    width: 100%;
    background-color: #111111;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.hero-tile{
    padding-top: 300px;
}

.episodes{
    margin: 0 10%;
    margin-top: 100px;
    margin-bottom: 50px;
}

h3{
    color: white;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
    border-radius: 1px;
}

.episode-date{
    margin: 0;
    color: #5f5f5f;
    font-family: 'Comfortaa', sans-serif;
    margin-top: 5px;
    margin-left: 20px;
    font-size: 12px;
}

.episode-box-big{
    display: flex;
    background-color: #2f2f2f75;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.episode-title{
    color: white;
    text-decoration: none;
    font-family: 'comfortaa', sans-serif;
    font-size: 32px;
    margin: 0;
    padding: 0 20px;
    display: block;
}

.episode-text{
    color: white;
    font-family: 'Comfortaa', sans-serif;
    padding-left: 20px;
    margin: 0;
    margin-top: 10px;
    font-size: 18px;
}

.text-box-big{
    display: block;
    flex-shrink: 100;
}

.rating{
    color: #4A76B6;
    font-weight: 700;
}

.episode-img-big{
    width: 350px;
    border-radius: 10px;
    transition: 400ms;
    transform: scale(1.05);
}

.img-box-big{
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    transition: 200ms;
    border-radius: 10px;
}

.img-box-big:hover .episode-img-big{
    transform: scale(1.2);
}

#play{
    position: absolute;
    bottom: 18px;
    left: 18px;
    font-size: 32px;
}


.img-box-big:hover{
    color: #4A76B6;
}

.line{
    width: 100%;
    border-bottom: 1px solid #5f5f5f;
    margin: 20px 0;
}

/* small */
.episode-box-small{
    display: flex;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.text-box-small{
    display: block;
    flex-shrink: 150;
}

.episode-img-small{
    width: 300px;
    border-radius: 10px;
    transition: 400ms;
    transform: scale(1.05);
}

.episode-img-small:hover{
    transform: scale(1.2);
}

.img-box-small{
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
    transition: 200ms;
    border-radius: 10px;
}

.img-box-small:hover{
    color: #4A76B6;
}

.img-box-small:hover .episode-img-small{
    transform: scale(1.2);
}

.gym-footer{
    margin-top: 2700px;
}

p{
    font-family: 'Comfortaa', sans-serif;
    color: white;
    font-weight: 100;
    font-size: 18px;
}

.episode-menu{
    color: white;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
    border-radius: 1px;
    margin-bottom: 40px;
}

.episode-menu-item{
    font-size: 24px;
    color: #5f5f5f;
    font-family: 'comfortaa', sans-serif;
    text-decoration: none;
    margin-right: 20px;
    transition: 300ms;
}

.back{
    display: flex;
}

.menu-title-static{
    font-size: 24px;
    color: white;
    font-family: 'comfortaa', sans-serif;
    text-decoration: none;
    /* margin-right: 20px; */
}

.episode-menu-item:hover{
    color: white;
}

.menu-back{
    margin-left: auto;
    margin-right: 0;
    /* display: inline-block; */
}

#menu-active{
    color: white;
    font-weight: 500;
    border-bottom: 5px solid #4A76B6;
    padding-bottom: 6px;
    /* border-radius: 1px; */
}

.section-title{
    font-family: 'comfortaa', sans-serif;
    font-size: 32px;
    color: white;
}

.divider{
    background-color: #4A76B6;
    margin: 20px 0px;
    width: 40px;
    height: 5px;
}

.show-title{
    color: white;
    text-decoration: none;
    font-family: 'comfortaa', sans-serif;
    font-size: 32px;
    margin: 0;
    padding: 0 20px;
}

.show-img-small{
    width: 300px;
    border-radius: 10px;
    transform: scale(1.05);
}

p a{
    color: white;
}

@media only screen and (max-width: 1000px) {

    main {
        height: 200px;
    }

    .hero-tile{
        padding-top: 130px;
        margin: 0 5%;
    }

    p{
        font-size: 14px;
    }

    .episode-box-big{
        flex-wrap: wrap;
        padding: 0;
    }

    .text-box-big{
        margin: 5%;
        margin-top: 15px;
    }

    .episodes{
        margin: 0 5%;
        margin-top: 50px;
    }

    .episode-title{
        font-size: 24px;
        padding: 0;
    }

    .episode-text{
        font-size: 14px;
        padding: 0;
    }

    .episode-box-small{
        flex-wrap: wrap;
        padding: 0;
    }

    .text-box-small{
        margin: 5%;
        margin-left: 0;
        margin-top: 15px;
    }

    .gym-footer{
        margin-top: 3600px;
    }

    .episode-img-small{
        width: 270px;
    }

    .episode-img-big{
        width: 100%;
    }

    footer{
        display: none;
    }

    .episode-menu-item, .menu-title-static{
        font-size: 16px;
    }
}