@charset "UTF-8";

body {
  align-items: center;
  color: #202020;
  display: flex;
  flex-direction: column;
  font-family: 'Merriweather', serif;
  font-variant-ligatures: none;
  font-size: 1.0em;
  letter-spacing: 0.13rem;
  margin: 0px;
  min-height: 100vh;
  text-align: center;
}

header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 20px 100px 0px 100px;
  width: 100%;
}

.logo {
  color: #c90c0c;
  font-family: 'Cutive Mono', monospace;
  font-size: 1.5em;
  font-weight: 600;
  text-decoration: none;
}

main {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0px 0px 20px 0px;
  width: 100%;
}

h1 {
  display: block;
  font-size: 2.2em;
  margin: 40px 0px 40px 0px;
  width: 85%;
}

.step-row {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 10px 0px 10px 0px;
}

.step-name {
  font-size: 1.8em;
  font-weight: 600;
  margin: 0px 0px 0px 0px;
  text-align: center;
  width: 250px;
}

.step-detail {
  font-size: 1.1em;
  font-weight: 400;
  margin: 0px 0px 0px 20px;
  text-align: center;
  width: 500px;
}

.break {
  flex-basis: 100%;
  height: 0;
}

.pricing-link {
  color: #000000;
  font-weight: 600;
  text-decoration: none;
}

.pricing-link:hover {
  color: #c90c0c;
}

.button-area {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0px 0px 0px;
}

.large-button {
  border-style: solid;
  border-radius: 4px;
  border-width: 1px;
  color: #202020;
  font-size: 1.0em;
  margin: 10px;
  padding: 5px;
  text-decoration: none;
  text-align: center;
  width: 130px;
}

.large-button:hover {
  background-color: #c90c0c;
  border-color:#202020;
  color: #FFFFFF;
}

hr {
  margin: 10px 0px 10px 0px;
  width: 800px;
}

h3 {
  font-size: 1.1em;
  margin: 0px 20px 0px 20px;
}

.tax-line {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 20px 0px 5px 0px;
  width: 700px;
}

footer {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 10px;
  margin-top: auto;
}

.link-area {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 5px 5px 5px 5px;
  padding: 0px;
}

.link-area a {
  color: #A9A9A9;
  font-size: 1.2em;
  margin: 10px;
  text-decoration: none;
}

.link-area a:hover {
  color: #202020;
}

.break2 {
  flex-basis: 100%;
  display: none;
  width: 0px; 
  height: 0px; 
  overflow: hidden;
}

.copyright {
  color: #A9A9A9;
  font-size: 1.0em;
  margin: 10px 10px 10px 10px;
}

/* 860px */

@media (max-width:860px){

    h1 {
      font-size: 1.8em;
      margin: 30px 0px 20px 0px;
    }

    .step-name {
      font-size: 1.5em;
      width: 200px;
    }

    .step-detail {
      font-size: 1.0em;
      width: 450px;
    }

    hr {
      width: 600px;
    }

    .tax-line {
      margin: 15px 0px 0px 0px;
      width: 600px;
    }

    h3 {
      font-size: 1.0em;
      margin: 0px 10px 0px 10px;
    }

}

/* 720px */

@media (max-width:720px){

    h1 {
      font-size: 1.5em;
    }

    .step-name {
      font-size: 1.3em;
      width: 130px;
    }

    .step-detail {
      width: 350px;
    }

    hr {
      width: 450px;
    }

    .tax-line {
      width: 450px;
    }

}

/* 570px */

@media (max-width:570px){

    .logo {
      font-size: 1.3em;
    }
    
    .link-area a {
      font-size: 1.1em;
      margin: 8px;
    }

}

/* 520px */

@media (max-width:520px){

    .logo {
      font-size: 1.2em;
      margin: 0px 20px 0px 20px;
    }

    h1 {
      font-size: 1.2em;
    }

    .button-area {
      flex-direction: column;
    }

    .step-row {
      flex-direction: column;
    }

    .step-name {
      width: 80%;
    }

    .step-detail {
      margin: 5px 0px 0px 0px;
      width: 80%;
    }

    hr {
      width: 80%;
    }

    .tax-line {
      flex-direction: column;
      margin: 10px 0px 0px 0px;
      width: 90%;
    }

    h3 {
      font-size: 0.9em;
      margin: 0px 0px 0px 0px;
    }

}

/* 450px */

@media (max-width:450px){

    .break2 {
      display: inline-block;
    }

}