@import url("https://fonts.googleapis.com/css2?family=Acme&display=swap");
* {
  margin: 0%;
  padding: 0%;
}

body {
  background-color: rgb(218, 218, 218);
  background-image: url(../images/confetti.gif);
  font-family: "Acme", sans-serif;
  overflow: hidden;
  padding: 1rem;
}
body .big {
  padding: 1rem;
  margin: 1rem;
  display: block;
  position: absolute;
  bottom: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7);
  display: grid;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  text-align: center;
}
body .big h1 {
  margin-bottom: 0.5rem;
  text-align: center;
}
body .big .small {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.5rem;
  padding: 1rem;
}

@media screen and (min-width: 1200px) {
  body .big {
    display: block;
    width: 80%;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 50%);
    background-color: rgba(255, 255, 255, 0.7);
    display: grid;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    max-width: 1200px;
    height: 400px;
  }
  body .big h1 {
    margin-bottom: 0.5rem;
    text-align: center;
  }
  body .big .small {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0.5rem;
    padding: 1rem;
  }
  body .big .small:hover {
    transform: scale(1.5, 1.5);
    transition: transform 1.5s;
  }
}/*# sourceMappingURL=main.css.map */