body, html {
  margin: 0;
  background: #FDFDFD;
  color: #777;
  font-family: 'Open Sans', sans-serif;
}
a {
  text-decoration: none;
  color: #333;
}
a:hover {
  text-decoration: underline;
}
a:visited {
  color: #333;
  text-decoration: none;
}
.img {
  height: 25vw;
  width: 25vw;
  max-width: 100px;
  max-height: 100px;
  border-radius: 50%;
  display: inline-block;
  margin: 10px;
}
#title, #blurred {
  width: 100%;
  height: 50vh;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
}
#blurred {
  filter: blur(3px);
  background-color: #333;
  background-image: url('/about/background-css.jpg');
  background-size: 100% 100%;
}
#goHome {
  position: absolute;
  left: 2vh;
  top: 2vh;
  cursor: pointer;
  user-select: none;
  z-index: 5;
}
#goHome > img {
  filter: invert(100%);
  height: clamp(10px, 2.5vh, 25px);
}
#title {
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0 0 15px #000 inset;
}
#content {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.main {
  margin: 25px;
  display: block;
  width: 50vw;
  min-width: 300px;
  text-align: left;
}
h1 {
  font-size: 30pt;
  font-weight: bold;
  letter-spacing: 1px;
}
h2 {
  letter-spacing: 1px;
  font-size: 250%;
  margin: 0;
}
h3 {
  font-size: 20pt;
  font-weight: normal;
}
h4 {
  font-size: 15pt;
  font-weight: normal;
  margin: 0;
}
hr {
  width: 100%;
  margin: 0;
  border: none;
  outline: none;
  background-color: #AAA;
  height: 1px;
}
#social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #AAA;
  margin: 10px;
}
.social:hover {
  text-decoration: underline;
}
.social_icon {
  width: 12pt;
  height: 12pt;
  display: inline;
  filter: grayscale(100%) brightness(0%);
  margin-right: 5px;
}
.centered {
  text-align: center;
}
.qna {
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 1px 1px 3px #555;
  background-color: #FFF;
  padding: 10px;
  margin: 0;
  font-size: 12pt;
}
.qna + .qna {
  margin-top: 10px;
}
.qna > h5, .qna > p {
  margin: 3px;
}
.qna > h5 {
  color: #79F;
  font-size: 13pt;
}
.qna > h5:before {
  content: "Q: ";
}
