h2 {
    margin: 10px 0px;
}

#control {
    width: 50vw;
    height: 4vh;
    margin: 16vh auto;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;

    -webkit-box-shadow: 0px 4px 30px 1px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 4px 30px 1px rgba(0,0,0,0.25);
    box-shadow: 0px 4px 30px 1px rgba(0,0,0,0.25);    
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);  
    border-radius: 10px;
}
#control-mobil{
    display: none;
    margin: 19vh auto;
    padding: 10px;
    -webkit-box-shadow: 0px 4px 30px 1px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 4px 30px 1px rgba(0,0,0,0.25);
    box-shadow: 0px 4px 30px 1px rgba(0,0,0,0.25);}
#control > * {
    display: flex;
    align-items: center;
    font-weight: 500;
}
.divisor {
    background-color: #D3D3D3;
    width: 2px;
    height: 2.5vh;
}
#content {
    margin: 0px auto;
    padding: calc(32px + 3vw);
    width: calc(75vw + 50px);
    box-sizing: border-box;

    border-radius: 30px;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.149);
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);  
}
#content p {
    margin: 10px 0px;
}
.dual-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.dual-container img {
    margin-left: 70px;
    width: 35%;
    object-fit: cover;
    height: auto;
    align-self: flex-start;
    border-radius: 10px;
    -webkit-box-shadow: 0px 4px 30px 1px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 4px 30px 1px rgba(0,0,0,0.25);
    box-shadow: 0px 4px 30px 1px rgba(0,0,0,0.25);    
}
#content button {
    margin-top: 50px;
    background-color: #16CBD9;
}
.entrenamiento {
    margin-bottom: 250px;
}
@media screen and (max-width: 1400px){
    .dual-container {
        flex-direction: column;
    }
    .dual-container img {
        width: 100%;
        margin: 70px 0px;
    }
    .dual-container div {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .dual-container div button {
        align-self: center;
    }
}
@media screen and (max-width: 1300px){
    #control-mobil {
        display: block;
    }
    #control {
        display: none;
    }
}