@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  overflow-x: hidden;
  background-color: rgba(143, 223, 143, 0.594);
}

.main{
  margin-top: 10px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}

.high-score{
  display: flex;
}

.panel{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #fff;
  width: 80vw;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.ptop{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 100%;
  background-color: rgba(5, 52, 5, 0.83);
}

.elem{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 15px;
}

.elem h3{
  color: white;
  font-size: 15px;
}

#black{
  color: black;
  margin-right: 7px;
}
#Hscorebox{
  padding: 3px 10px;
  font-size: 17px;
  margin-bottom:5px ;
}


.box{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: rgb(17, 129, 67);
  margin:0px 5px;
  padding: 5px 8px;
  font-size: 14px;
  border-radius: 5px;
}

#pbtm{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: calc(100% - 40px);
  padding:20px;
  padding-bottom: 30px;
}


.bubble{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgb(9, 78, 9);
  color: #fff;
  border-radius: 50%;
  font-weight: 500;
  cursor: pointer;
  margin: 10px;
}

.bubble:hover{
  background-color: rgb(3, 50, 3);
}

button{
  background-color:  rgb(17, 129, 67);
  color: white;
  padding: 7px 16px;
  outline: none;
  border-radius: 10px;
  font-size: 17px;
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
}

.red{
  background-color: #6AA14A;
}
.orange{
  background-color: #9BA63A;
}
.blue{
  background-color: #3AA63C;
}

footer{
  text-align: center;
}