*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    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: rgb(160, 206, 170);
    color: #fff;
}
#panel{
    overflow: hidden;
    width: 80%;
    height: 80%;
    background: #fff;
    border-radius: 10px;
}
#ptop{
    padding: 0px 25%;
    justify-content: space-between;
    display: flex;
    align-items: center;
    width: 100%;
    height: 80px;
    background: rgb(52, 85, 52);

}
.elem{
    display: flex;
    /* background-color: red; */
    gap: 20px;
    align-items: center;
}

.box{
    color: rgb(20, 92, 20);
    font-size: 25px;
    font-weight: 600;
    padding: 10px 20px;
    background: #fff;
    border-radius: 5px;

}
.pbtm{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding:10px;
    width: 100%;
    height: calc(100% - 80px);
}
.bubble{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgb(36, 78, 36);
    border-radius: 50%;

}
.bubble:hover{
    cursor: pointer;
    background: rgb(20, 46, 20);
}
h1{
    color: #000;
}
h3{
    color: #000;
}