@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,500,600,700,900i&display=swap');

body {
  margin: 0;
  font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #002138;
}

p {
  white-space: pre-line;
}

.container {
  min-width: 100%;
  max-width: 100%;
  margin: 0 auto;
  white-space: nowrap;
}

.spacer-15 {
  height: 7px;
}

.spacer-30 {
  height: 15px;
}

.spacer-60 {
  height: 30px;
}

.spacer-100 {
  height: 50px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em 0;
  font-weight: 400;
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
  color: #002138;
  white-space: pre-line;
}

h1 {
  font-size: 2em;
  font-weight: 600;
}

h2 {
  font-size: 1.2em;
  font-weight: 600;
}

h3 {
  font-size: 1em;
  font-weight: 600;
}

a {
  color: inherit;
}

section {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

code {
  font-family: menlo, inconsolata, monospace;
  font-size: calc(1em - 2px);
  color: #555;
  background-color: #f0f0f0;
  padding: 0.2em 0.4em;
  border-radius: 2px;
}

.row {
  display: inline;
}

.column-10 {
  width: 100%;
}
.column-20 {
  width: 100%;
}
.columnt-25 {
  width: 100%;
}
.column-30 {
  width: 100%;
}
.column-33 {
  width: 100%;
}
.column-50 {
  width: 100%;
}
.column-66 {
  width: 100%;
}
.column-75 {
  width: 100%;
}
.column-100 {
  width: 100‰;
}

@media (min-width: 400px) {
  body {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {

  .spacer-15 {
    height: 15px;
  }
  
  .spacer-30 {
    height: 30px;
  }
  
  .spacer-60 {
    height: 60px;
  }
  
  .spacer-100 {
    height: 100px;
  }

  section {
    height: 85vh;
  }

  .column-10 {
    width: 10%;
  }
  .column-20 {
    width: 20%;
  }
  .column-25 {
    width: 25%;
  }
  .column-30 {
    width: 30%;
  }
  .column-33 {
    width: 33.3333333333333%;
  }
  .column-50 {
    width: 50%;
  }
  .column-66 {
    width: 66.6666666666666%;
  }
  .column-75 {
    width: 75%;
  }
  .column-100 {
    width: 100%;
  }

  .row {
    display: flex;
    flex-direction: row;
  }

  .container {
    min-width: 1200px;
    max-width: 1200px;
    margin: 0 auto;
  }
}


