@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%;
}

h1 {
  display: block;
  font-size: 1.8em;
  font-weight: 400;
  margin: 30px 0px 0px 0px;
}

.examples-area {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 15px;
  max-width: 880px;
}

.example-container {
  align-items: center;
  color: #000000;
  display: flex;
  flex-direction: column;
  height: 260px;
  justify-content: flex-start;
  margin: 10px 30px 10px 30px;
  padding: 5px;
  text-decoration: none;
  width: 220px;
}

.example-container:hover {
  background-color: #F5F5F5;
}

.example-title {
  font-size: 1.2em;
  font-weight: 600;
}

.example-text {
  margin-top: 10px;
  width: 95%;
}

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){

    .example-container {
      margin: 5px;
    }

}

/* 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;
    }
    
}


/* 510px */

@media (max-width:510px){

    .example-container {
      height: auto;
    }
    
}


/* 450px */

@media (max-width:450px){

    .break2 {
      display: inline-block;
    }

}