@font-face {
  font-family: "HelveticaNeueRegular";
  src: url("helveticaneue-webfont.woff2") format("woff2"),
    url("helveticaneue-webfont.woff") format("woff");
  font-style: normal;
  font-weight: 400;
}

html,
body {
  font-family: "HelveticaNeueRegular", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #010100;
  height: 100%;
}
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  background-color: #d0cec8;
  overflow: auto;
  padding: 80px;
}

main {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  display: inline-block;
  padding-bottom: 1px;
}

.logo {
  width: 100%;
  max-width: 415px;
  height: auto;
  display: block;
}

.cols {
  width: 100%;
  display: flex;
  margin-top: 150px;
}

.cols .col {
  width: 50%;
}

.col p:first-child {
  margin-top: 0;
}

.col p:last-child {
  margin-bottom: 0;
}

.col.bottom {
  align-self: flex-end;
}

.size-1 {
  font-size: 1.0625rem;
  line-height: 130%;
}

.size-2 {
  font-size: 0.75rem;
  line-height: 120%;
}

@media only screen and (max-width: 1024px) {
  body {
    padding: 20px;
  }
  .logo {
    max-width: 215px;
  }
  .cols {
    flex-direction: column-reverse;
    margin-top: 30px;
  }
  .cols .col {
    width: 100%;
  }
  .col.bottom {
    margin-top: 30px;
    align-self: flex-start;
  }
  .size-1 {
    font-size: 0.875rem;
  }
}

@media (hover: hover) {
  a {
    transition: border-color 0.2s;
  }
  a:hover {
    border-color: #010100;
  }
}
