@import url('https://fonts.googleapis.com/css?family=Merriweather');

body {
    margin: 0;
    padding: 0;
    background: #886666;
    display: flex;
    justify-content: center;
    position: relative;
    font-size: 16px;
}

.container {
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90vw;
    height: 90vw;
    font-family: 'Merriweather', serif;
}

#board {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #444444;
    border-radius: 50%;
    margin: auto;
    width: 100%;
    height: 100%;
}

#controls {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-self: center;
    justify-content: space-evenly;
    background: silver;
    border: 2vw solid #444444;
    border-radius: 50%;
    height: 45vw;
    width: 45vw;
}

#cTop, #cMid, #cBtm {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#cTop h1 {
    margin-bottom: 0;
}

#cMid {
    margin: 0;
}

#cMid h4 {
    margin: 0;
}

#cBtm {
    justify-content: center;
}

#cBtm h6 {
    margin: 0;
}

#counter {
    display: flex;
    border: 2px solid black;
    background: black;
    color: black;
    font-family: 'digital-clock-font';
    text-align: center;
    font-size: 1.2em;
}

#startStrict, #startB, #strictB {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 0;
}

#startStrict h3 {
    margin: 0;
    font-size: 14px;
}
#startPlay {
    border-radius: 50%;
    background: tomato;
    width: 4vw;
    height: 4vw;
}

#strictPlay {
    border-radius: 50%;
    background: darkorange;
    width: 4vw;
    height: 4vw;
}

#onOff {
    display: flex;
    justify-content: flex-start;
    color: black;
    border: 2px solid #888888;
    border-radius: 20%;
    background: #666666;
    height: 14px;
    width: 38px;
    font-size: 14px;
}

#switch {
    background: #4372AA;
    height: auto;
    width: 50%;
}

.top-row, .bottom-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 50%;
    width: 100%;
}

.middle-row {
    display: flex;
    position: absolute;
    top: 20vw;
    left: 25vw;
    text-align: center;
}

.colorB {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 5px auto;
}

#green {
    top: 0;
    left: 0;
    border-radius: 100% 0 0 0;
    background: #99cc99;
}

#red {
    top: 0;
    right: 0;
    border-radius: 0 100% 0 0;
    background: #cc9999;
}

#yellow {
    bottom: 0;
    left: 0;
    border-radius: 0 0 0 100%;
    background: #cccc99;
}

#blue {
    bottom: 0;
    right: 0;
    border-radius: 0 0 100% 0;
    background: #99cccc;
}

@media only screen and (min-width: 375px) {
    #counter {
        font-size: 1.5em;
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) {
    body {
        font-size: 24px;
    }

    #counter {
        font-size: 2.2em;
        padding-left: 5%;
        padding-right: 5%;
    }

    #startStrict {
        font-size: 36px;
    }
}

@media only screen and (min-width: 1024px) {
    .container {
        width: 60vw;
        height: 60vw;
    }

    .middle-row {
        top: 10vw;
        left: 30vw;
    }

    #controls {
        height: 35vw;
        width: 35vw;
        font-size: 1em;
    }
}
