*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    width: 100%;
    height: 100%;
}

#main{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #B6FFFA;
    /* background-color: rgb(153, 235, 153); */
    font-family: 'Gillroy', sans-serif;
}

#panel{
    overflow: hidden;
    width: 80%;
    height: 80%;
    border-radius: 10px;
    background-color: #98E4FF;
}

#ptop{
    padding: 0px 30%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    width: 100%;
    height: 100px;
    background-color: #80B3FF;
    /* background-color: rgb(88, 152, 88); */
}

.elem{
    display: flex;
    align-items: center;
    gap: 10px;
}

.elem h2{
    font-size: 22px;
    font-weight: 500;
}

.box{
    color: #58930b;
    font-weight: 600;
    font-size: 22px;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 5px;
}

#pbtm{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    height: calc(100% - 100px);
    padding: 20px;
}

.bubble{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #687EFF;
    /* background-color: rgb(72, 104, 72); */
    border-radius: 50%;
    color: #fff;
    font-weight: 500;
}

.bubble:hover{
    cursor: pointer;
    background-color: #27005D;
    /* background-color: rgb(50, 75, 50); */
}