.container {
  position: relative;
  width: 100%;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.column {
  position: center;
  width: 100%;
  float: center;
  box-sizing: border-box;
}

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0;
  }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%;
  }
  .column,
  .columns {
    margin-left: 0;
  }
  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }
}

html {
  font-size: 100%;
  color-scheme: light;
}
body {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Open Sans", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial,
    sans-serif;
}

h1, .h1{
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 800;
}
h1, .h1 {
  font-size: 24px;
  line-height: 64px;
  letter-spacing: 0;
}

@media (min-width: 550px) {
  h1 {
    font-size: 48px;
    line-height: 96px;
  }
}

a {
  color: #0085ff;
}
a:hover {
  color: #0085ff;
}

hr {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
    border-width: 0;
    border-top: 2px solid #a1a1a1
}