body {
    font-family: Arial, sans-serif;
    text-align: center;
}

.game-area {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.container-with-radio {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.container {
    width: 150px;
    height: 150px;
    border: 1px solid #000;
    position: relative;
}

.flower, .ball {
    width: 30px;
    height: 30px;
    position: absolute;
}

#flower-container1 .flower:nth-child(1) { top: 10px; left: 10px; }
#flower-container1 .flower:nth-child(2) { top: 10px; left: 50px; }
#flower-container1 .flower:nth-child(3) { top: 50px; left: 10px; }
#flower-container1 .flower:nth-child(4) { top: 50px; left: 50px; }

#flower-container2 .flower:nth-child(1) { top: 10px; left: 10px; }
#flower-container2 .flower:nth-child(2) { top: 10px; left: 50px; }
#flower-container2 .flower:nth-child(3) { top: 50px; left: 10px; }

#ball-container1 .ball:nth-child(1) { top: 10px; left: 10px; }
#ball-container1 .ball:nth-child(2) { top: 10px; left: 50px; }
#ball-container1 .ball:nth-child(3) { top: 50px; left: 10px; }

#ball-container2 .ball:nth-child(1) { top: 10px; left: 10px; }
#ball-container2 .ball:nth-child(2) { top: 10px; left: 50px; }
#ball-container2 .ball:nth-child(3) { top: 50px; left: 10px; }
#ball-container2 .ball:nth-child(4) { top: 50px; left: 50px; }
