* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100dvw;
  height: 100dvh;
}

#hero {
  width: 100dvw;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#hero #title {
  font-family: Arial;
  font-size: 2.5em;
}
#hero #focus {
  color: #7E000A;
  font-size: 4em;
}
#hero #CTA {
  margin-top: 2em;
  font-size: 1.5em;
  box-sizing: border-box;
  background-color: pink;
  padding: 0.7em 1.2em;
  border-radius: 20px;
  border: none;
  color: #7E000A;
  font-weight: bolder;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 10px 0 #7E000A;
}
#hero #CTA:active {
  transform: translateY(10px);
  box-shadow: 0 0px 0 #7E000A;
}

/*# sourceMappingURL=main.css.map */
