html,
body {
  background: #f1f1f1;
  height: 100%;
  padding: 0;
  margin: 0;
  font-family: Courier New, Courier, Lucida Sans Typewriter, Lucida Typewriter, monospace !important;
}

.gradient {
  background: rgb(58, 37, 114);
  /* background: linear-gradient(274deg, rgb(58, 37, 114) 30%, rgb(224, 46, 42) 90%); */
}

h1 {
  font-size: 2rem;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}
.row .column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.row .column .intro {
  max-width: 380px;
  padding: 2rem;
  color: #f1f1f1;
}

@media only screen and (max-width: 800px) {
  .row {
    display: block !important;
  }
  .row .column {
    height: 50% !important;
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */