header .soundButton {
    line-height: 100%;
    font-size: 8vh;
    width: 30%;
    margin: 0px
}

.soundButton {
    display: flex;
    width: 20%;
    height: 80%;
    padding: 16px;
    background-color: #333333;
    color:#ffffff;
    margin-left: 7px;
    margin-right: 7px;
    text-align: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.soundButton:hover {
    background-color: #555555;
    cursor: pointer;
}

.buttonsRow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 100%;
    width: 100%;
    height: auto;
    max-height: 12vh;
    align-items: center;
    padding-top: 3vh;
    padding-bottom: 3vh;
    justify-content: center;
}

.buttonsRow .soundButton {
    display: flex;
    flex-direction: column;
    width: 28vw;
}