*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


.main{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    background-color: black;
}

.GameBox{
    overflow: hidden;

    border-radius: 20px ;
    height: 80%;
    width: 80%;
    background-color: aliceblue;
}

.topbar{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 15%;
    width: 100%;
    background-color: brown;
}

.scoreboard{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;

}


.box{
    border-radius: 10px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 70px;
    background-color: rgb(255, 255, 255);
}

.mainBar{
    display: flex;
    text-align: center;
    align-items: center;
    flex-wrap: wrap;
}

#over{
    display: flex;
    align-items: center;
    justify-content: center;
}

.bubble{
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: brown;
}

.bubble:hover{
    background-color: rgb(83, 4, 4);
    cursor: pointer;
}