@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;800&display=swap');

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  background-image: url('../img/me.jpg');
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  font-family: 'Open Sans', sans-serif;
}

header {
  text-align: center;
  opacity: 0;
}

#main {
  flex: 1;
  text-align: center;
  opacity: 0;
}

footer {
  text-align: center;
  color: white;
  font-weight: 300;
  font-size: 0.75rem;
}