@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;
  max-width: 1100px;
  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: 20px 0px 0px 0px;
  width: 85%;
}

h3 {
  display: block;
  font-size: 1.3em;
  font-style: italic;
  margin: 20px 0px 20px 0px;
  line-height: 1.6;
  width: 85%;
}

.join-form {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 20px 0px 20px 0px;
}

input {
   text-align:center;
}

.break {
  flex-basis: 100%;
  height: 10px;
}

.large-button {
  background-color: #FFFFFF;
  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;
}

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;
}


/* 570px */

@media (max-width:570px){

    .logo {
      font-size: 1.4em;
    }

    h1 {
      font-size: 1.9em;
    }

    h3 {
      font-size: 1.2em;
    }

    input {
      width: 80%;
    }

    .link-area a {
      font-size: 1.0em;
      margin: 5px 10px 5px 10px;
    }

}

/* 450px */

@media (max-width:450px){

    .break2 {
      display: inline-block;
    }

}