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

* {
  box-sizing: border-box;
}

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

.bg {
  width: calc(100vw + 60px);
  height: calc(100vh + 60px);
  background: url('images/The_Great_Wave_off_Kanagawa.jpg') no-repeat center center/contain;
  top: -30px;
  left: -30px;
  z-index: -1;
  filter: blur(0px);
  position: absolute;
}

.loading-text {
  font-size: 50px;
}
