* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Gilroy", sans-serif;
  }
  
  html, body {
    width: 100%;
    height: 100%;
  }
  
  #main {
    width: 100%;
    min-height: 100vh;
    background-color: rgb(194, 215, 232);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  
  #panel {
    width: 100%;
    max-width: 800px;
    height: 90vh;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  #ptop {
    width: 100%;
    height: 100px;
    padding: 0 5%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(28, 136, 194);
    flex-wrap: wrap;
  }
  
  .elem {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
  }
  
  .elem h2 {
    font-weight: 500;
    font-size: 18px;
  }
  
  .box {
    padding: 6px 12px;
    color: rgb(5, 59, 129);
    font-weight: 600;
    font-size: 20px;
    background-color: #fff;
    border-radius: 5px;
  }
  
  #pbtm {
    padding: 20px;
    width: 100%;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    overflow-y: auto;
  }
  
  .bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgb(76, 130, 174);
    color: #fff;
    border-radius: 50%;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
  }
  
  .bubble:hover {
    cursor: pointer;
    background-color: rgb(18, 84, 128);
  }
  
  /* RESPONSIVE MEDIA QUERY */
  @media (max-width: 600px) {
    #ptop {
      flex-direction: column;
      height: auto;
      padding: 10px;
    }
  
    .elem {
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
    }
  
    .elem h2 {
      font-size: 16px;
    }
  
    .box {
      font-size: 18px;
      padding: 5px 10px;
    }
  
    .bubble {
      width: 35px;
      height: 35px;
      font-size: 12px;
    }
  }