* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  height: 100vh;
}

.content {
  position: relative;
  width: 60%;
  height: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.content__title {
  font-size: 4rem;
  text-align: center;
  text-transform: capitalize;
  color: #020202;
  z-index: 20;
  pointer-events: none;
}

.content__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2rem;
}

.content__button {
  text-transform: uppercase;
  border: 0;
  border-radius: .5rem;
  background: #f5f5f5;
  color: #020202;
  font-size: 1rem;
  padding: 1rem 4rem;
  cursor: pointer;
  z-index: 10;
}

@media screen and (max-width: 575.98px) {
  .content__button {
    padding: 1rem 2.5rem;
  }
}

@media screen and (max-width: 575.98px) {
  .content {
    width: 100%;
  }
}
/*# sourceMappingURL=main.css.map */
