*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
   
}

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

#main{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(176, 255, 176);
}

#pannel{
    overflow: hidden;
    height: 80%;
    width: 85%;
    background-color: rgb(255, 255, 255);
    border-radius: 0.6rem;
   /* box-shadow: 5px 5px 4px rgb(130, 130, 130); */
}

#ptop{
    padding: 0px 20%;
    width: 100%;
    height: 80px;
    background-color: rgb(74, 127, 88);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.elem{
    width: 10%;
    display: flex;
    color: white;
    align-items: center;
    gap: 20%;
    color: rgb(255, 255, 255);
   

}

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

.box{
    padding: 10px;
    background-color: white;
    border-radius: 5px;
    color: rgb(35, 163, 57);
    font-weight: 600;
    font-size: 25px;
}

#pbtm{
    padding: 20px;
    height: 70vh;
    width: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    /* justify-content: space-evenly; */
    gap: 10px;
    flex-wrap: wrap;
    

  }

  #pbtm h1{
    color:rgb(166, 166, 166);
    font-size: 5rem;
    font-weight: 600;
    text-shadow: 4px 7px 6px rgb(29, 29, 29);
  }
.buble{
     height: 2.7rem;
     width: 2.7rem;
     border-radius: 50%;
     background-color: rgb(0, 198, 13);
     display: flex;
     align-items: center;
     justify-content: center;
       font-weight: 600;
       margin-right: 1rem;
       
     
  
}

.buble:hover{
        background-color: rgb(0, 118, 2);
        cursor: pointer;
}


@media (max-width:820px){
  #ptop{
    flex-direction: column;
    height: 200px; 
  }
  .elem{
    position: relative;
    right: 8rem;
  }
  #pbtm{
    height: 100vh;
    overflow: scroll;
  }
}

/* @media screen and (max-width: 955px) {
 #main{
    background-color: rgb(255, 0, 0);
  }
  #ptop .elem{
       display: block;
  };
  #ptop{
    display: block;
  }

} */

