
@charset "UTF-8";
/* CSS Document */

html {
  background: #ccc;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  text-align: left;
  vertical-align: central;
  left: 0;
  right: 0;
  width: 100%;
  height: 36px;
  top: 0px;
  background: #231f20;
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  color: #fff;
  padding: 0 6px 0 10px;
  box-sizing: border-box;
  z-index: 1080;
}

.iconlink:hover {
  transform: scale(1.3);
}

.nametitle {
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  color: #231f20;
}

.daterange {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #231f20;
}

.page {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 80px;
  background: #ccc;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: black;
}

.content {
  width: 57rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 10px 0 70px 0;
  background-color: #fff;
}

.paragraphcontent {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 10px 0;
}

.imgcontent {
  margin: 10px 0;
}

.imgtitle {
  text-align: center;
  margin: 10px auto;
  font-family: "Raleway", sans-serif;
  font-style: italic;
  font-size: 11px;
  color: #231f20;
  max-width: 75%;
}

/* from https://css-tricks.com/snippets/css/simple-and-nice-blockquote-styling/ */

.quote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 4rem 8rem;
  padding: 2rem 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
.quote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
.quote p {
  display: inline;
}

.referencelinks {
  display: flex;
  flex-direction: column;
  font-family: "Times New Roman", Times, serif;
  margin: 1rem auto 1rem 1rem;
}
.referencelinks > span {
  margin: 0.2rem;
}

footer {
  display: flex;
  flex-direction: column;
  position: fixed;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  color: #fff;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  bottom: 0px;
  padding: 6px 0;
  background: #231f20;
}
