.mainContainer {
    height: 500px;
    width: 500px;
    /*margin: 0 auto;*/
    background-color: lightgrey;
    position: relative;
    background-image: url("../img/table.jpg");
}

.gameOver {
    height: 150px;
    width: 200px;
    color: white;
    font-size: 2.5em;
    position: absolute;
    left: 150px;
    top: 25px;
}

.removeVisibility {
    display: none;
}

.startTextBox {
    color: white;
    position: absolute;
    top: 70px;
    left: 80px;
}

.circle {
    margin: 0 auto;
    height: 300px;
    width: 300px;
    border-radius: 180px;
    background-color: black;
    position: relative;
    top: 100px;
}

.tlCircle {
    position: absolute;
    top: 30px;
    left: 30px;
    height: 110px;
    width: 110px;
    background-color: green;
    border-top-left-radius: 130px;
}

.trCircle {
    position: absolute;
    top: 30px;
    left: 160px;
    height: 110px;
    width: 110px;
    background-color: red;
    border-top-right-radius: 130px;
}

.blCircle {
    position: absolute;
    top: 155px;
    left: 30px;
    height: 110px;
    width: 110px;
    background-color: yellow;
    border-bottom-left-radius: 130px;

}

.brCircle {
    position: absolute;
    top: 155px;
    left: 160px;
    height: 110px;
    width: 110px;
    background-color: blue;
    border-bottom-right-radius: 130px;

}

.middle {
    position: absolute;
    height: 140px;
    width: 140px;
    background-color: black;
    top: 80px;
    left: 80px;
    border-radius: 180px;
}

h1 {
    color: white;
    position: absolute;
    left: 20px;
    font-size: 30px;
    top: 5px;

}

.startbox {
    height: 20px;
    width: 20px;
    top: 90px;
    left: 85px;
    background-color: green;
    position: absolute;
    border-radius: 180px;
}

.counterbox {
    height: 20px;
    width: 20px;
    top: 90px;
    left: 35px;
    background-color: lightgrey;
    position: absolute;
    text-align: center;
}

@media screen and (min-width: 300px) {
    .mainContainer {
        height: 500px;
        width: 300px;
        margin: 0 auto;
        background-color: lightgrey;
        position: relative;
        background-image: url("../img/table.jpg");
    }

    .gameOver {
        left: 50px;
    }
}

@media screen and (min-width: 400px) {
    .mainContainer {
        height: 500px;
        width: 400px;
        margin: 0 auto;
        background-color: lightgrey;
        position: relative;
        background-image: url("../img/table.jpg");
    }
    .gameOver {
        left: 100px;
    }
}

@media screen and (min-width: 500px) {
    .mainContainer {
        height: 500px;
        width: 500px;
        margin: 0 auto;
        background-color: lightgrey;
        position: relative;
        background-image: url("../img/table.jpg");
    }
    .gameOver {
        left: 150px;
    }
}