#play-button {
    /*
    width: 5.5vw;
    height: 5.5vw;
    */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

button {
    padding: 6px; 
    /* padding: 1vw; */
    border: none;
    border-radius: 100%;
    
    width: 75px;
    height: 75px;
    
    margin: 5px;
    
    background-color: #34A56F; /*#2a4949;*/
    color: #e9e9e9;
    cursor: pointer;
    float: left;
}

button:focus {
    outline: none;
}

.play {
    width: 0;
    height: 0;
    
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid #e9e9e9;
    margin-left: 10px;
    
    
    /*
    border-top: 1.7vw solid transparent;
    border-bottom: 1.7vw solid transparent;
    border-left: 2.5vw solid #e9e9e9;
    margin-left: 10px;
    */
    
}

.pause {
    width: 30px;
    height: 30px;
    border: none;
    border-left: 10px solid #e9e9e9;
    border-right: 10px solid #e9e9e9;
}

#buttonbox {
    display: table-cell; 
    float: left; 
    width: 100px;
    height: 100%;
}

#fullrow {
    width: 100%; 
    overflow: hidden; 
    display: table;
    padding-top: 2vh;
    border-top: 1px solid white;
    margin-bottom: 1.5vh;
}    

#playSettings {
    display: table-cell; 
    text-align: left; 
    vertical-align: middle; 
    height: 100%; 
    float: left;
    font-size: 18pt;
    width: calc(100% - 150px);
}

#settings {
    display: none; 
    width: 0px; 
    height: 0px;
    visibility: hidden;
}    

#scoreboard {
    background-color: #1C421C; 
    display: table-cell; 
    text-align: left; 
    vertical-align: middle; 
    height: 100%; 
    width: 200px; 
    padding: 12px; 
    color: white; 
    font: 24px Arial, sans-serif;    
}

#scoreboardBorder {
    border: 4px solid white; 
    width: 100%; 
    height: 100%; 
    padding: 5px;
}

#scoreboardBorder table {
    width: 100%;
}

@media screen and (max-width: 600px) {
    #scoreboard {
        font: 16px Arial, sans-serif;    
        padding: 4px; 
        width: 150px; 
    }
    
    #scoreboardBorder {
        border: 3px solid white; 
    }
    
    #playSettings {
        font-size: 12pt;
    }

    button {
        padding: 4px; 
        border: none;
        border-radius: 100%;
    
        width: 50px;
        height: 50px;
    
        margin: 3px;
    }

    .play {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #e9e9e9;
        margin-left: 5px;
    }

    .pause {
        width: 15px;
        height: 15px;
        border: none;
        border-left: 5px solid #e9e9e9;
        border-right: 5px solid #e9e9e9;
    }

    #buttonbox {
        width: 60px;
    }

}