* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  width: 100%;
  height: 100vh;
  background-color: rgb(163, 235, 163);
  display: flex;
  justify-content: center;
  align-items: center;
}
.Panel {
  width: 80%;
  height: 80%;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
}
.Panel_Top {
  width: 100%;
  height: 100px;
  background-color: green;
  display: flex;
  justify-content: space-evenly;
}
.box {
  display: flex;
  gap: 10px;
  align-items: center;
}
.info {
  width: 44px;
  height: 44px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  border-radius: 5px;
}
.box h1 {
  color: white;
}
.Panel_Bottom {
  width: 100%;
  height: calc(100% - 100px);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: hidden;
}
.Bubble {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: blue;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 600;
  /* display: none; */
  /* overflow: hidden; */
}
.Game_Over {
  /* display:none; */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Start_Game{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.Start_Game h1{
    font-size: 3rem;
}

.btn {
  padding: 5px 7px;
  background-color: rgb(151, 227, 151);
  color: rgb(8, 8, 8);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  margin-top: 10px;
}
.btn1 {
  padding: 5px 12px;
  background-color: rgb(151, 227, 151);
  color: rgb(8, 8, 8);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  margin-top: 10px;
}
@media only screen and (max-width: 550px) {
  .box h1 {
    font-size: 1rem;
  }
  .info {
    width: 34px;
    height: 34px;
  }
  .Bubble {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  .Panel_Bottom {
    overflow: auto;
  }
  .Start_Game h1{
    font-size: 2rem;
  }
}
