@import url("https://fonts.googleapis.com/css?family=Charm");
body, html {
  height: 100%;
}

* {
  box-sizing: border-box;
}

.bg-image {
  /* The image used */
  background-image: url("../images/background.jpg");
  /* Add the blur effect */
  filter: blur(8px);
  -webkit-filter: blur(8px);
  /* Full height */
  height: 100%;
  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Position text in the middle of the page/image */
.bg-text {
  font-family: "Charm", cursive;
  font-weight: bold;
  color: whitesmoke;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  width: 80%;
  text-align: center;
}

canvas {
  position: absolute;
  z-index: 25;
  opacity: 0.1;
}

/*# sourceMappingURL=styles.css.map */
