@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%;
}

h2 {
  font-size: 1.5em;
  margin: 20px 0px 20px 0px;
  width: 90%;
}

h3 {
  font-size: 1.2em;
  font-style: italic;
  margin: 20px 0px 20px 0px;
  width: 90%;
}

.email-area {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.email-row {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 10px 0px 10px 0px;
}

.email-title {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 225px;
}

.email-address {
  align-items: center;
  color: #202020;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-decoration: none;
}

.email-address:hover {
  text-decoration: underline;
}

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;
}

/* 675px */

@media (max-width:675px){

    h2 {
      font-size: 1.3em;
    }

    h3 {
      font-size: 1.1em;
    }

}

/* 570px */

@media (max-width:570px){

    .logo {
      font-size: 1.0em;
      margin: 0px 20px 0px 20px;
    }
    
    .link-area a {
      font-size: 1.0em;
      margin: 5px 10px 5px 10px;
    }

}

/* 500px */

@media (max-width:500px){

    .oregon {
      width: 200px;
      height: auto;
    }

    .email-row {
      flex-direction: column;
    }

    .email-title {
      justify-content: center;
      margin-bottom: 5px;
    }

}

/* 450px */

@media (max-width:450px){

    .break2 {
      display: inline-block;
    }

}