@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 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin: 20px 0px 0px 0px;
  max-width: 1250px;
  width: 100%;
}

.login {
  color: #A9A9A9;
  font-size: 1.2em;
  margin: 0px 40px 0px 0px;
  text-decoration: none;
}

.login:hover {
  color: #000000;
}

main {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin: 0px 0px 10px 0px;
  max-width: 1250px;
  width: 100%;
}

.logo {
  color: #c90c0c;
  font-family: 'Cutive Mono', monospace;
  font-size: 2.0em;
  font-weight: 600;
  margin: 15px;
}

.tagline {
  font-size: 2.5em;
  font-weight: 400;
  margin: 15px;
}

.tagline2 {
  display: none;
  font-size: 2.1em;
  font-weight: 400;
  margin: 15px;
}

.button-area {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 15px;
  width: 80%;
}

.large-button {
  border-style: solid;
  border-radius: 4px;
  border-width: 1px;
  color: #202020;
  margin: 15px;
  padding: 10px;
  text-decoration: none;
  width: 170px;
}

.large-button:hover {
  background-color: #c90c0c;
  border-color:#202020;
  color: #FFFFFF;
}

.values-area {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
}

.values-group {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 10px 0px 10px 0px;
  width: 260px;
}

.values-group h3 {
  margin: 0px;
  padding-top: 10px;
}

.values-group p {
  margin: 0px;
  padding: 10px;
}

.break {
  flex-basis: 100%;
  display: none;
  width: 0px; 
  height: 0px; 
  overflow: hidden;
}

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;
}

/* 1050px */

@media (max-width:1050px){

    .break {
      display: inline-block;
    }

}

/* 800px */

@media (max-width:800px){

    .logo {
      font-size: 1.8em;
    }

    .tagline {
      font-size: 2.1em;
    }

}

/* 570px */

@media (max-width:570px){

    .login {
      margin: 0px 20px 0px 0px;
    }

    .tagline {
      display: none;
    }

    .tagline2 {
      display: flex;
    }

    .button-area {
      flex-direction: column;
    }

    .values-group {
      width: 100%;
    }

    .link-area a {
      font-size: 1.1em;
      margin: 8px;
    }

}

/* 450px */

@media (max-width:450px){

    .login {
      font-size: 1.1em;
    }

    .logo {
      font-size: 1.4em;
    }

    .tagline2 {
      font-size: 1.7em;
    }

    .button-area {
      flex-direction: column;
    }

    .break2 {
      display: inline-block;
    }

}

/* 360px */

@media (max-width:360px){

    .tagline2 {
      font-size: 1.5em;
    }

}