*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:sans-serif;
}

html,body{
    width: 100%;
    height: 100%;
}
#main{
    height: 100%;
    width: 100%;
    background-color: lightgreen;
    display: flex;
    align-items: center;
    justify-content: center;
}
#inner{
    height: 90%;
    width: 80%;
    background-color: aliceblue;
    border-radius: 5px;
    overflow: hidden;
}
#innertop{
    height: 100px;
    width: 100%;
    background-color:green;
    color:black;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20%;
}
#box{
    padding: 5px;
    background-color:white;
    border-radius: 5px;
}
#elem{
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-weight:700 ;
}
#bottom{
    width: 100%;
    height: calc(100% - 100px);
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
   
   
}
#bubble{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: white;
    font-weight: 700;
    background-color:green;   
    display: flex;
    align-items: center;
    justify-content: center;
}

#bubble:hover{
    background-color: rgb(17, 44, 17);
    cursor: pointer;
}