*{
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    box-sizing: border-box;
}
html, body{
    width: 100%;
    height: 100%;
}
#main{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(127, 236, 193);

} 
#panel{
    overflow: hidden;
    width: 80%;
    height: 80%;
    background-color: rgb(247, 243, 238);
    border-radius: 10px;
}

#ptop{
    padding: 0 25%;
    justify-content: space-between;
    align-items: center;
    display: flex;
    color: white;
    width: 100%;
    height: 100px;
    background-color: rgb(66 116 96);
}
.ele{

    display: flex;
    align-items: center;
    gap: 20px;

}
.box{
    color: rgb(5, 131, 89);
    font-weight: 500;
    font-size: 20px;
    padding: 10px 20px;
    background-color: white;
    border-radius: 5px;
}

#pbtm{
    padding: 05px 15px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    height: calc(100%-100px);
}
.bubble{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color:  rgb(66 116 96);
    color: white;
    border-radius: 50%;
}
.bubble:hover{
    background-color: rgb(8, 227, 140);
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    #panel {
      width: 95%;
      height: 95%;
    }
    
    #ptop {
      padding: 0 10%;
    }
  
    .ele {
      flex-direction: column;
    }
  
    .box {
      font-size: 16px;
    }
  
    #pbtm {
      gap: 5px;
    }
  
    .bubble {
      width: 50px;
      height: 50px;
    }
  }
@media screen and (max-width: 1024px) {
    #panel {
      width: 90%;
      height: 90%;
    }
  
    #ptop {
      padding: 0 15%;
    }
  
    .box {
      font-size: 18px;
    }
  
    .bubble {
      width: 55px;
      height: 55px;
    }
  }