body {
  background: darkred;
  background: url('/img/laptop.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2)), url('/img/laptop.jpg');
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 18px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  font-weight: 300;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

div.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

div.content h1 {
  margin: 2rem 0;
  font-weight: inherit;
  font-size: 3em;
}

.icons {
  display: flex;
  min-width: 6rem;
  justify-content: center;
}

.icons > a {
  opacity: .4;
  transition: 0.5s opacity;
  color: white;
  font-size: 28px;
  margin: 0 .5em;
}

.icons > a:hover {
  opacity: 1;
  transition: 0.5s opacity;
}

.feathery {
  background: url(/img/feathery-mono.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 28px;
  height: 28px;
  display: block;
}

.particles {
  height: 90%;
  width: 100%;
  position: absolute;
}

footer {
  bottom: 3rem;
  position: absolute;
  transform: scaleY(.95);
}

span.periph {
  margin: 0 0.5rem;
  color: #28acc0;
}

span.periph:last-of-type {
  margin-right: 0;
}