body,html{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin: 0;
    width: 100%;
    height: 100%;
    background-color: black;
}
.name{
    color: rgb(240, 28, 28);
    font-weight: bolder;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
@media (width >= 800px) {
    #container{
        width: 45%;
    }
    
}
@media (600px <= width < 800px) {
    #container{
        width: 60%;
    }
}
@media (400px <= width < 600px) {
    #container{
        width: 80%;
    }
    #mid {
        margin-top: 0 !important;
        height: auto !important;
    }
}
@media (width < 400px) {
    #container{
        width: 87%;
        border-width: 5px !important;
    }
    #mid {
        margin-top: 0 !important;
        height: auto !important;
    }
}

.name {
    font-size: calc(5vw + 15px);
}
#theValue, #left, #right {
    font-size: calc(4.2vw + 10px);
}
.forClr {
    font-size: calc(2.5vw + 10px);
}

#container{
    height: 50%;
    border: solid rgb(24, 149, 232) 15px;
    display: flex;
}
#c1,#c2,#c3{
    width: 33%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
}
#c2,#c3{
    border-left:dashed orange 10px;
}
.blocks{
    border: solid white 2px;
    height: 25px;
    color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(178, 24, 4);
}
.block-clr{
    background-color: rebeccapurple;
    transform: translateY(-20px);
}
#start,#restart {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: rgb(121, 124, 126);
    color: white;
    border: 0;
    width: 100px;   
    height: 50px;  
    font-size: 28px; 
    border-radius: 8px; 
}

footer{
    width: 50%;
    display: flex;
    justify-content: end;
    margin-top: 20px;
}
#score{
    color: aliceblue;
    font-size: 25px;
    display: flex;
    justify-content: end;
}
#restart{
    display: None;
}
#start,#restart{
    margin-right: 30px;
}
.hori{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column !important;
}
#mid{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

}
.forClr{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: white;
    height: 10%;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    /*Hope I get clarity here,
    instead of using pixels is 
    there any better alternative?*/
}
#theValue{
    color: azure;
    margin: 3px;
    color: tomato;
}
#mid{
    margin-top: 20px;
    display: flex;
    width: 100%;
    height: 30%;
}
#left,#right{
    height: 100%;
    color: tomato;
    background-color: black;
    border: none;
}
.endGame{
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    color: aliceblue;
    font-size: 25px;
}