* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
main {
  min-height: 100vh;
  background: linear-gradient(to top right, #ff0a6c, #2d27ff);
  display: flex;
  align-items: center;
  justify-content: center;
}
h1 {
  color: black;
  font-family: cursive;
  font-weight: 700;
  font-size: 3rem;
  opacity: 0.8;
}
h2 {
  color: black;
  font-family: cursive;
  font-weight: 700;
  font-size: 2.5rem;
  opacity: 0.8;
}
.glass {
  background: white;
  min-height: 80vh;
  width: 60%;
  background: linear-gradient(
    to right bottom,
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.3)
  );
  border-radius: 2rem;
  z-index: 2;
  backdrop-filter: blur(2rem);
}
.circle1,
.circle2 {
  background: rgb(240, 155, 212);
  background: linear-gradient(
    to right bottom,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.3)
  );
  height: 10rem;
  width: 10rem;
  position: absolute;
  border-radius: 50%;
}
.circle1 {
  top: 2%;
  right: 15%;
}
.circle2 {
  bottom: 2%;
  left: 15%;
}
.heading {
  background: linear-gradient(to bottom left, #e74486, #5954f0);
  text-align: center;
  margin: 5vh;
  border-radius: 2rem;
}
.options {
  padding-top: 4vh;
  background: linear-gradient(to bottom left, #e74486, #5954f0);
  text-align: center;
  margin: 5vh;
  border-radius: 2rem;
  height: 55vh;
}
.singlePlayer,
.multiPlayer,
.homePage {
  border-style: solid;
  border-color: rgb(34, 24, 24);
  background: linear-gradient(to right bottom, #4943f0, #88e6e6);
  border-width: 2px;
  border-radius: 2rem;
  margin-bottom: 5vh;
  height: 7vh;
  width: 45vh;
  text-decoration-color: black;
  font-weight: 800;
  font-size: 2.5vh;
}
.singlePlayer {
  margin-top: 4vh;
}

.singlePlayer:hover,
.multiPlayer:hover,
.homePage:hover {
  border-style: solid;
  border-color: rgb(34, 24, 24);
  background: linear-gradient(to right bottom, #1008ef, #94ecec);
  border-width: 2px;
  border-radius: 2rem;
  margin-bottom: 5vh;
  height: 7vh;
  width: 45vh;
  text-decoration-color: black;
  font-weight: 800;
  font-size: 2.5vh;
  filter: brightness(0.8);
}
@media screen and (max-width: 800px) {
  .left,
  .main,
  .right {
    width: 100%;
  }
  @import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap");
  .body {
    font-family: "Poppins", sans-serif;
  }
  h1 {
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
  }
  h2 {
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
  }
  .heading,
  .options {
    height: 60%;
    width: 85%;
    padding: 4px;
    margin-left: 25px;
    border-radius: 1.5rem;
  }
  .heading {
    padding: 6px;
    width: 84%;
  }
  .glass {
    width: 90%;
    min-height: 80%;
  }
  .circle1,
  .circle2 {
    visibility: hidden;
  }
  .options {
    height: 350px;
    padding-top: 5vh;
  }
  .singlePlayer,
  .multiPlayer,
  .homePage {
    height: 12%;
    width: 75%;
    font-size: 1.5vh;
    border-style: inherit;
  }
  .singlePlayer {
    margin-top: 4vh;
  }
  .singlePlayer:hover,
  .multiPlayer:hover,
  .homePage:hover {
    height: 12%;
    width: 75%;
    font-size: 1.5vh;
    border-style: inherit;
  }
}
