*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    height: 100%;
    width: 100%;
    font-family: "Style Script", serif;
    font-style: normal;
} 
#main{
    background-color: rgb(153, 236, 208);
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items:center ;
    display: flex;
}
#center-div{
    height: 80%;
    width: 80%;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
}
#head{
    padding: 0 25%;
    width: 100%;
    height: 100px;
    background-color: rgba(7, 96, 60, 0.897);
    display: flex;
    color: aliceblue;
    align-items: center;
    justify-content: space-between;
}
#box{
    display: flex;
    gap: 20px;
    align-items: center;
}
.num{
    padding: 10px;
    background-color: white;
    border-radius: 5px;
    color: rgb(51, 7, 93);
    font-weight: 900;
    font-size: 20px;
    padding: 10px 20px;
}
#bottom{
    width: 100%;
    height: calc(100% - 100px);
    display: flex;
    padding: 20px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    /* background-color: black; */
}
#bubble{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: rgb(57, 195, 57);
    display: flex;
    justify-content: center;
    align-items: center;
    color: antiquewhite;
    font-size: 20px;
    font-weight: 900;
}
#bubble:hover{
    background-color: green;
}