* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
html, body{
    width: 100%;
    height: 100%;
}
#main{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: aquamarine;
}
#panel{
    overflow: hidden;
    width: 90%;
    height: 80%;
    border-radius: 10px;
    background-color: #ffff;
}
#ptop{
    padding: 0px 30%;
    align-items: center;
    justify-content: space-between;
    display: flex;
    color: #ffff;
    width: 100%;
    height: 100px;
    background-color: rgb(5, 77, 53);
}
.elem{
    display: flex;
    align-items: center;
    gap: 20px;
}
.elem h2{
    font-weight: 500;
}
.box{
    padding: 10px 15px;
    background-color: #ffff;
    border-radius: 5px;
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 30px;
}

#pbtm{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 15px;
    width: 100%;
    height:100%;
    background-color: rgb(121, 216, 165);
}
.bubble{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #4807c1;
    font-weight: 500;
}
.bubble:hover{
    background-color: rgb(8, 101, 45);
    cursor: pointer;
}