.container-exercicios {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 60px;
}

#btn {
    border-radius: 20px;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid #afb0b1;
    background: #8fb1bd;
    color: white;
    font-weight: bold;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

#btn:hover {
    border: 2px solid #afb0b1c6;
    background: #8fb1bdd3;
    color: rgba(255, 255, 255, 0.816);
}

.texto-do-lado {
    text-align: center;   
}

.texto-do-lado h1 {
    color: #8fb1bd;
}

.texto-do-lado p {
    color: #afb0b1;
}

.texto-do-lado h5{
    color: #8fb1bd;
}

