body{
    font-family: monospace;
    background: rgba(236, 236, 235, 0.781);
    width: 80vw;
    height: 80vh;
    
    
}
.box{
    width: 150px;
    height: 150px;
    border: 10px solid rgb(30, 37, 37);
    margin: 5px 5px;
    border-radius: 30px;
    
}
.whole{
    width: 450px;
    height: 450px;
}
.container{
    margin:10vh 10px;
    width: 420px;
    height: 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    background: rgb(219, 216, 216);
    border-radius: 30px;
    padding: 10px;
    box-shadow: -5px 5px rgb(129, 123, 123);
    
}
.btn{
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(5, 5, 5);
    width: 60px;
    height: 60px;
    border: 5px solid rgb(0, 0, 0);
    border-radius: 50%;
    position: relative;
    top: -255px;
    left: 168px;
    background-color: #e9e4e4;
    opacity: 0.6;
    
}
h1{ margin:10px;
    color: rgb(247, 240, 240);
    font-size: 1.5rem;
    background-color: rgb(70, 63, 63);
    border-radius: 7px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 56px;
    box-shadow: -5px 5px rgb(2, 1, 1);
    

   
}
#blue{
    background: rgb(58, 58, 230);
}
#red{
    background: rgb(221, 46, 46);
}
#yellow{
    background: rgb(228, 228, 51);
}
#green {
    background: rgb(56, 233, 56);
}

.pressed{
    background: white;
    opacity: 0.5;
    border: 10px solid white;
    box-shadow: 5px 5px black;
}
.player-pressed{
    background: rgb(7, 6, 6);
    opacity: 0.5;
    border: 10px solid rgb(0, 0, 0);
}
.button-on{
    border: rgb(0, 0, 0) solid 5px;
    opacity: 1;
    background: rgb(54, 22, 22);
    color: white;
}