@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 0px 0px 0px;
  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%;
}

h3 {
  display: block;
  font-size: 1.3em;
  font-style: italic;
  margin: 20px 0px 0px 0px;
  width: 85%;
}

h1 {
  display: block;
  font-size: 2.2em;
  margin: 20px 0px 0px 0px;
  width: 85%;
}

.text-area {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 20px 0px 00px 0px;
  max-width: 1200px;
  width: 80%;
}

p {
  font-size: 1.1em;
  font-weight: 400;
  margin: 10px 0px 10px 0px;
  text-align: left;
}

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){

    h3 {
      font-size: 1.2em;
      width: 90%;
    }

    h1 {
      font-size: 1.8em;
    }

    .category-name {
      margin: 30px 0px 15px 0px;
    }

    .question {
      font-size: 1.2em;
      width: 220px;
    }

    .answer {
      font-size: 1.0em;
      width: 400px;
    }

    hr {
      width: 600px;
    }

}

/* 675px */

@media (max-width:675px){

    h1 {
      font-size: 1.5em;
    }

    .category-name {
      font-size: 1.6em;
      margin: 30px 0px 15px 0px;
    }

    .question {
      font-size: 1.1em;
      width: 150px;
    }

    .answer {
      font-size: 0.9em;
      width: 330px;
    }

    hr {
      width: 450px;
    }

}

/* 570px */

@media (max-width:570px){

    .logo {
      font-size: 1.0em;
      margin: 0px 20px 0px 20px;
    }

    h1 {
      font-size: 1.2em;
    }

    .qa-row {
      flex-direction: column;
    }

    .question {
      width: 80%;
    }

    .answer {
      margin: 5px 0px 0px 0px;
      width: 80%;
    }

    hr {
      width: 80%;
    }

    .link-area a {
      font-size: 1.0em;
      margin: 5px 10px 5px 10px;
    }

}

/* 450px */

@media (max-width:450px){

    .break2 {
      display: inline-block;
    }

}