/* Make page full height */
html, body {
    height: 100%;
    margin: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

body {
  font-family: 'Raleway', sans-serif;
}

.home-link {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
}

.header-links a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
}

.header-links a:hover {
  color: #e50914;
}

/* Use flexbox layout */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Push footer to bottom */
#footer {
    margin-top: auto;
}
