@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

.bg {
  background: url("https://images.unsplash.com/photo-1505820013142-f86a3439c5b2?q=80&w=2942&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")
    no-repeat center center/cover;
  position: absolute;
  top: -30px;
  left: -30px;
  width: calc(100vw + 60px);
  height: calc(100vh + 60px);
  filter: blur(30px);
}

.loading-text {
  font-size: 50px;
  color: #fff;
  text-shadow: 1px 1px 10px #000;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  text-align: center;
  line-height: 100vh;
}

.attribution {
  color: #fff;
  position: absolute;
  bottom: 50px;
  right: 50px;
}
