html {
    height: 100vh;
    min-width: 1000px;
    background-image: linear-gradient(130deg, FFFFFFF)
}

.container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    background: #eeeee6;
}

.muscularSystem{
    text-align: center;
    width: 50%;
    display: block;
    margin: auto;
} 
.muscleGroups{
    text-align: center;
    width: 50%;
    display: block;
    margin: auto;
}



.fitnessHeader{
    color: red;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    display: flex;
    justify-content: center;
}

.modalHeader{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 25px;
    margin: 7px 40px;

        /* display: flex;
    justify-content: center; */
}

.selectWorkouts{
    padding: 15px 15px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 17px;
        display: flex;
    margin: 7px 40px;
    margin-bottom: 45px;
    /* justify-content: center; */
}

.main{
    display: flex;
}

#modal-bg{
    display: none;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}
#modal{
    
    z-index: 2;
    background-color: white;
    margin: 10% auto;
    width: 75%;
    height: 75%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 5px 8px rgba(0,0,0,0.2), 0 7px 20px rgba(0,0,0,0.17);
    animation-name:modalopen;
    animation-duration:1s;
    overflow: auto; 
} 
@keyframes modalopen {
    from{ opacity: 0}
    to{opacity: 1}
}
#closeButton{
    color: #ccc;
    float: right;
    font-size: 30px;
}
#closeButton:hover, #closeButton:focus{
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#chest_text{
     position: relative;
    top: -550px;
    z-index: 1;
    left: -87px;
    color: white;
    background-color: #e3886f;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}
#chest_text:hover, #chest_text:focus{
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#core_text{
    position: relative;
    top: -452px;
    z-index: 1;
    left: -122px;
    color: white;
    background-color: #e3886f;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}

#core_text:hover, #core_text:focus{
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#leg_text{
    position: relative;
    top: -295px;
    z-index: 1;
    left: 83px;
    color: white;
    background-color:#e3886f;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}

#leg_text:hover, #leg_text:focus{
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#back_text{
      position: relative;
    top: -550px;
    z-index: 1;
    left: 84px;
    color: white;
    background-color:#e3886f;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}
#back_text:hover, #back_text:focus{
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.workoutDescription{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.workoutName{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


.novice{
    display: flex;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    justify-content: center;
    background: #ffc800;
    color: white;
    margin: 0px -40px;
}

.intermediate{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    display: flex;
    justify-content: center;
    background: #ff8d00;
    color: white;
    margin: 0px -40px;
}

.advanced{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    display: flex;
    justify-content: center;
    background: #ff2f00;
    color: white;
    margin: 0px -40px;
}

.instructions{
    position: absolute;
   display: flex;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    top: 100px;
}
.instructionOL{
    position: absolute;
    top: 130px;
    left: -5px;
}



