html, body {
  background: white;
  height: 100vh;
  margin: 0em;
  padding: 0em;
  font-family: "Dancing Script", cursive;
  place-items: center;
}

.logo {
  position: relative;
  display: grid;
  place-items: center;
  height: 10%;
  width: 10%;
  left: 45%;
  top: 30vh;
}

.content {
  position: relative;
  display: grid;
  place-items: center;
  height: 15%;
  width: 15%;
  left: 43%;
  top: 30vh;
}
.content h1 {
  font-size: 50px;
}

@media screen and (max-width: 600px) {
  .logo {
    scale: 700%;
  }
  .content {
    text-align: center;
    align-items: center;
    left: 33%;
    top: 36vh;
  }
  .content h1 {
    font-size: 50px;
  }
}/*# sourceMappingURL=main.css.map */