* {
    margin: 0;
    padding:0;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    width:50%;
  
    margin: 0 auto;
    height: 100vh;
}

.coach {
    width: 250px;
    height: 250px;
    border:5px solid#1e3970;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    background-color: #bfc9d2;
}

.rows {
    width: 100%;
    margin-top:50px;
    height: 300px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.first-row, .second-row {
    margin-top:0px;
    width: 100%;
    height:300px;
    
    display: flex;
    flex-direction: row;
    justify-content: space-between;

  
}

.client {
    background-color: #bfc9d2;
    border:2px solid #1e3970;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;

}
.client:hover {
    background-color: #bfc9d2;
    border:5px solid #ff6701;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;

}
.client:focus  {
    background-color: #1e3970;
    border:2px solid #ff6701;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    color:white;

}

a {
    margin: 0 auto !important;
 
    text-align: center;
    display: block;
    padding:10px;
    border-radius: 20px;
    background-color: #ff6701;
    cursor: pointer;
}
a:hover {
    margin: 0 auto !important;
 
    text-align: center;
    display: block;
    padding:10px;
    border-radius: 20px;
    background-color: #ff6701;
    cursor: pointer;
    border:2px solid #1e3970;
}

@media only screen and (max-width: 768px) {
    
    .container {
        width:95%;
    
        margin: 0 auto;
        height: 100vh;
    }
    .client {
        background-color: #bfc9d2;
        border:2px solid #1e3970;
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 50%;
        cursor: pointer;
    
    }
    .client:hover {
        background-color: #bfc9d2;
        border:5px solid #ff6701;
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 50%;
        cursor: pointer;
    
    }
    .client:focus  {
        background-color: #1e3970;
        border:2px solid #ff6701;
        width: 30px;
        height: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 50%;
        cursor: pointer;
        color:white;
    
    }
}
