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

* {
  box-sizing: border-box;
}

body {
  display: grid;
  place-content: center;
  min-height: 100vh;
  margin: 0;
  font-family: Ubuntu, sans-serif;
  overflow: hidden;
}

.bg {
  background: url('https://images.unsplash.com/photo-1640271443625-3276ed8f62b5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80')
    no-repeat center / cover;
  position: absolute;
  inset: -30px;
  z-index: -1;
  filter: blur(0px);
}

.loading-text {
  font-size: 48px;
  color: #fff;
}
