*{
    /* margin: 0; */
    padding: 0;
    text-align: center;
    line-height: 1.5rem;
    font-family: monospace;
}

h2{
    font-size: 3rem;
}
h3{
    font-size: 2rem;
    max-width: 50vw;
    line-height: 2rem;
}
h4{
    font-size: 1.5rem;
    color: green;
}
body{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    background-color: bisque;
    overflow: hidden;
}
.game-box-container{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    background: radial-gradient(circle, #333, #111);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba( 0, 0, 0, 0.6);
}

.container{
    display: flex;
    gap: 2rem;
}

.container div{
    height: 40vh;
    width: 40vw;
    max-width: 150px;
    max-height:150px ;
    border: 4px solid black;
    border-radius:50%;
    box-shadow: 4px 4px 8px black;
}

.red{
    background-color: red;
}

.yellow{
    background-color: yellow;
}

.green{
    background-color: green;
}

.blue{
    background-color: blue;
}

.flash{
    background-color: white;
}

.war{
    color: red;
}

.controls{
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.controls button{
    padding: 0.7rem 1.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50px;
    font-weight: bold;
    border: none;
    background: linear-gradient(135deg, #007BFF, #00D4FF);
    color: #FFF;
    border: none;
    cursor: pointer;
    transition:0.2s;
}

.controls button:hover{
    transform: scale(1.1);
    background: linear-gradient(135deg, #FF512F, #DD2476);
}

.btn{
    transition: all 0.2s;
}

.btn:active, .flash{
    transform: scale(1.1);
    box-shadow: 0 0 20px white;
}

.disabled{
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}