body {
  background-color: grey;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.header {
  padding: 10px 16px;
  height: 20vh;
  background-color: darkred;
  color: yellow;
  position: sticky;
  top: 0;
}

.content {
  padding: 16px;
  height: 200vh;
  background-color: #000;
  color: yellow;
}

.margin-top {
  height: 20vh;
  background: url("https://unitsofculture.files.wordpress.com/2012/10/sarah-frost3.jpg");
  background-size: cover;
}

.margin-bottom {
  height: 100vh;
  color: yellow;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.fadeOut {
  animation-name: faderOut;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.fadeIn {
  animation-name: faderIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes faderOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes faderIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.back-anchor {
  position: fixed;
  top: 0;
  right: 0;
  height: 10vh;
  width: 10vh;
  color: yellow;
  background-color: black;
  border: 4px solid darkred;
  border-radius: 50%;
  margin: 2vh;
  z-index: 2;
  text-align: center;
  text-decoration-color: red;
  font-size: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}/*# sourceMappingURL=style.css.map */