html {
    background-color: black;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    justify-content: center;
    text-align: center;
}
h1, h2 {
    color: white;
}

h1 {
    font-size: 70px;
    opacity: 0;
    transition: opacity 1s ease-in-out;

}
h2 {
    font-size: 50px;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

#bg {
  position: fixed;

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;
  z-index: -1;

  filter: blur(100px);
}