@import url("fonts.css");
body {
  font-family: Barlow, -apple-system, Helvetica, Arial, sans-serif;
  background-color: #020122;
  color: lightpink;
  font-size: 16px;
}
#home div#container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#blog div#container {
  display: flex;
  justify-content: center;
  height: 100%;
}

article {
  text-align: center;
}
small {
  font-size: 0.5em;
}
h1 {
  font-size: 10em;
  margin: 0;
}
div#sum {
  border-bottom: double 0.2em lightpink;
}
hr {
  background-color: #f2f3ae;
  border: 0;
  border-radius: 1rem;
  height: 1rem;
  margin-top: -0.75rem;
}
@media only screen and (max-width: 800px) {
  h1 {
    font-size: 5em;
  }
}
p {
  color: white;
}
.highlight {
  color: lightblue;
}
a {
  color: #edf1f6;
  padding: 0.125rem;
  border-bottom: 0.125rem solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
}
a:hover {
  border-color: #fff;
}
ul {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
li {
  list-style: none;
  display: inline-block;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}
li::after {
  content: " / ";
  color: rgba(255, 255, 255, 0.2);
}
li:last-child::after {
  content: "";
}
#blog .avatar {
  float: left;
  margin-right: 0.5rem;
}
.avatar img {
  border-radius: 20rem;
  width: 100px;
  height: 100px;
}
a.fn {
  font-size: 1.4rem;
  text-decoration: none;
  cursor: pointer;
  font-weight: bold;
  border: none;
}
