body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f2f2f2;
    overflow: hidden;
}

#game-container {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.square {
    width: 30%;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    /* position: relative; */
}
.hite{
    display: block;
    width: 75%;
    border: 1px solid #ddd;
    height: 50%;
    position: absolute;
    top: 14vh;
    border-radius: 100%;
}

.a_1{
    border-color: #F00;
}

#left-square {
    left: 0;
    background-image: url('../images/left.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#right-square {
    right: 0;
    background-image: url('../images/left.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
#center-square {
    left: 35%;
    background-image: url('../images/left.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    transition: top 0.3s ease-in-out;
}

.red-circle {
    background-color: #f00;
}

.gray-circle {
    background-color: #ccc;
}
.title{
    font-size: 38pt;
    color: #F00;
    background: #fff;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 10px;
    height: fit-content;
    border: 1px solid #f00   
}
.answerBox{
    position: absolute;
    width: 100vw;
    height: 100vh;
    border: 2px solid #f00;
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: end;
    gap: 10px;
}
.answerBox div{
    padding: 20px 10px;
    border: 1px solid #ccc;
    background: white;
    text-align: center;
    font-size: 16pt;
}
.box{
    /* width: 120px; */
    bottom: 120px;
    z-index: 99999;
    border-radius: 10px;
}
.box img{
    height: 100%;
    width: 100%;
}