* {
  margin: 0;
  padding: 0;
  font-family: 'futura-pt', sans-serif;
}

html, body {
  height: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: #21272a;
  z-index: 4;

  h1 {
    font-size: 20px;
    line-height: 44px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;

    a {
      color: #fff;
      text-decoration: none;
    }
  }
}

main {
  padding-top: 44px;
  box-sizing: border-box;
}

body.light {
  main {
    display: grid;
    height: 100svh;
    width: 100vw;
    place-items: center;
    background: #f5f8fa;
  }
}

body.dark {
  background: #21272a;

  main {
    overflow-y: hidden;
  }

  h2 {
    margin: 120px auto 60px;
    font-size: 60px;
    line-height: 60px;
    font-weight: 300;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  p {
    margin-top: 15px;
    font-size: 20px;
    line-height: 27px;
    font-family: 'minion-pro', serif;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;

    a {
      font-family: 'minion-pro', serif;
      color: #008fd8;
    }
  }

  @media (min-width: 320px) and (max-width: 728px) {
    h2 {
      margin: 60px auto;
      padding: 0 30px;
      font-size: 30px;
      line-height: 30px;
    }

    p {
      padding: 0 30px;
      font-size: 15px;
      line-height: 20px;
    }
  }
}

.subscribe-container {
  margin: 0 15px;

  h2 {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 48px;
    font-weight: 400;
    color: #475359;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  input[type='text'],
  input[type='tel'] {
    display: block;
    width: 100%;
    padding: 8px;
    font-size: 16px;
    line-height: 20px;
    color: #475359;
    font-weight: 400;
    font-family: 'minion-pro', serif;
    border: 1px solid #acb9bf;
    border-radius: 3px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
  }

  input[type='tel'] {
    position: absolute;
    left: -9999px;
  }

  input[type='submit'] {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px 0;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #21272a;
    border: none;
    border-radius: 6px;
    -webkit-appearance: none;
    appearance: none;
  }
}
