html,
body {
  height: 100%;
  width: 100%;
}

body {
  background: #1E2124;
  background: -webkit-radial-gradient(top right, #1E2124, #36373A);
  background: -moz-radial-gradient(top right, #1E2124, #36373A);
  background: radial-gradient(to bottom left, #1E2124, #36373A);

  color: #fff;
  font-size: 16px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  overflow: hidden;
}


.container {
  margin: 0 auto;
  height: 100%;
  overflow: auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .container {
    width: 1000px;
  }
}

.content {
  flex-direction: column;
  padding: 1rem;
}

@media (max-width: 960px) {
  .content .flex-1 {
    margin-top: 2rem;
  }
}

@media (min-width: 960px) {
  .content {
    flex-direction: row;
  }

  .content .flex-1:first-child {
    margin-right: 2rem;
  }

  .content .flex-1:last-child {
    margin-left: 2rem;
  }
}

header {
  padding: 1rem 1rem 0;
}

@media (min-width: 640px) {
  header {
    padding: 3rem 1rem 0;
  }
}

.logo {
  background: url('/img/logo.svg') no-repeat;
  background-size: 100px 100px;
  display: inline-block;
  height: 100px;
  width: 100px;
}

@media (max-width: 640px) {
  .logo {
    background-size: 50px 50px;
    height: 50px;
    width: 50px;
  }
}

.collage {
  display: block;
  width: 100%;
}

@media (max-width: 960px) {
  .collage {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 640px) {
  .collage {
    width: 500px;
  }
}


h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 960px) {
  h2 {
    font-size: 1.5rem;
  }
}

p {
  color: #D9D9D9;
  font-size: 1rem;
}

ul {
  font-weight: 600;
}

p, ul {
  line-height: 1.75rem;
}

.button {
  background: #0587FF;
  border-radius: 1rem;
  color: #FFF;
  display: block;
  font-weight: 600;
  padding: 1.25rem 0;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

.button:hover {
  background: #006DD1;
}

.button:active {
  background: #00529E;
}
