/* Reset default browser spacing */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

/* Full-screen website background */
body {
  min-height: 100vh;

  background-image: url("background-image.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: white;
}