* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.html,
body {
  height: 100%;
  width: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.main {
  height: 100svh;
  max-width: 100%;
  background-color: rgb(21, 221, 21);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}
.main h1 {
  margin-bottom: 2%;
}

.container {
  border: 1px solid blue;
  max-width: 80%;
  max-height: 80svh;
  display: flex;
  flex-wrap: wrap;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: hidden;
  scroll-behavior: smooth;

  background-color: aqua;
  border-radius: 10px;
}

.container_top {
  width: 100%;
  min-height: 15vh;
  background-color: rgb(34, 216, 77);
  border-bottom: 1px solid black;

  padding: 10px;
  border-radius: 10px 10px 0px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.container_top h2 {
  color: rgb(21, 221, 21);
}
.updates {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.updates h2 {
  text-align: center;
  color: rgb(11, 12, 10);
  padding: 5px;
  font-weight: 700;
  font-size: 20px;
}
.update {
  min-width: 50px;
  height: 35px;
  background-color: rgb(164, 164, 233);
  justify-content: center;
  display: flex;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 700px;
  color: rgb(0, 7, 4);
  font-weight: 800;
}

.container_bottom {
  min-height: 525px;
  width: 100%;
  border-radius: 0px 0px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
 
}
.bubble {
  height: 50px;
  width: 50px;
  background-color: rgb(53, 16, 139);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}
.bubble:hover {
  background-color: blanchedalmond;
  color: blue;
  transition: 100ms;
}


@media only screen and (max-width: 500px) {
  .main {
    height: 100vh;
    max-width: 100%;
    background-color: rgb(21, 221, 21);
  }
  .main h1 {
    margin-bottom: 10%;
  }
  .container_top {
    background-color: rgb(34, 216, 77);
    min-height: 15vh;
  }

  .container_top h2 {
    color: rgb(14, 15, 14);
  }
  .container {
    min-width: 97vw;
    background-color: aqua;
    margin-bottom: 20%;
  }
 
 
}
  
footer {
  text-align: center;
  max-width: 100%;

  background-color: rgb(21, 221, 21);
}