@import url("https://fonts.googleapis.com/css2?family=Baloo+Tamma+2:wght@400;500&display=swap");
body {
  font-family: "Baloo Tamma 2", cursive;
  background: black;
  color: white;
}

h1 {
  padding-top: 6rem;
  text-align: center;
}

.mainSection {
  display: flex;
}

.image {
  padding-left: 25%;
  padding-top: 3rem;
  height: 175;
  width: 177;
}

.text {
  padding-left: 5rem;
  font-size: large;
}

.buttons {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
}

.helpButton {
  font-weight: bold;
  border: 3px solid #fff;
  border-radius: 15%;
  font-size: 20px;
  font-family: "Baloo Tamma 2", cursive;
  background: none;
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
  transition: 0.8s;
  position: relative;
  overflow: hidden;
}

.helpButton::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0%;
  background: #fff;
  z-index: -1;
  transition: 0.8s;
  top: 0;
  border-radius: 0 0 50% 50%;
}

.helpButton:hover::before {
  height: 180%;
}

.helpButton:hover {
  border: 3px solid black;
  color: black;
}

.homeButton {
  font-weight: bold;
  border: 3px solid black;
  border-radius: 15%;
  font-size: 20px;
  font-family: "Baloo Tamma 2", cursive;
  background: white;
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
  color: black;
  transition: 0.8s;
  position: relative;
  overflow: hidden;
}

.homeButton::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0%;
  background: none;
  z-index: -1;
  transition: 0.8s;
  top: 0;
  border-radius: 0 0 50% 50%;
}

.homeButton:hover::before {
  height: 180%;
}

.homeButton:hover {
  border: 3px solid white;
  background: none;
  color: white;
}

@keyframes opa {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* blured */

#warning {
  filter: drop-shadow(0px 0px 10px red);
}

#Group7 {
  animation: opa 0.6s ease-in-out infinite alternate;
}

footer {
  padding-top: 5rem;
  font-family: "Baloo Tamma 2", cursive;
  color: white;
  opacity: 0.2;
}

.footer-items {
  padding-top: 10px;
  display: flex;
  color: white;
  justify-content: space-around;
}