:root {
  --primary-bg: #EEEADF;
  --text-color: #2E2A2C;
  --primary-accent: #8B0000;
  --secondary-accent: #C3D5B5;
}



h1,
h2,
h3,
h4,
h5 {
  color: var(--text-color);
  font-family: "Verdana", sans-serif;
}

b,
strong {
  color: var(--text-color);
}

nav {
  a {
    color: var(--text-color);
  }

  a.active {
    background-color: var(--secondary-accent);
    padding: 2px 5px;
    border-radius: 5px;
  }
}

a {
  color: var(--primary-accent);
}


html {
  color: var(--text-color);
  font-family: "Georgia", serif;
  font-size: 1.2em;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: var(--primary-bg);
}

body {
  max-width: 800px;
  overflow-x: scroll;
  padding: 15px;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Lato, Helvetica, Arial, sans-serif;
}

.site-title {
  font-size: 2.5em;
  margin-bottom: 10px;
  /* text-align: center; */
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: left;
  font-size: 1.2em;
  margin-bottom: 20px;
}

pre {
  overflow-x: scroll;
}

img {
  max-width: 100vw;
}

.block {
  border: 1px dotted white;
  padding: 5px 15px;
  margin: 0 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.block h1 {
  font-size: 1em;
  text-align: center;
  margin-bottom: 0;
}

.small {
  font-size: 0.8em;
}

.wave {
  background: #111;
  color: #fff;
  text-shadow: 1px 1px 10px #fff, 1px 1px 10px #ccc;
}

footer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;

  .contact-container {
    img {
      margin-left: 10px;
      margin-right: 10px; 
    }
  }
}

footer hr {
  width: 100%;
}
