@import url('https://fonts.googleapis.com/css?family=Ubuntu');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Ubuntu', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}
.bg{
    background: url('./img/marek-pavlik-uqaYqj_dr98-unsplash.jpg');
    background-size: cover;
    background-position: center;
    width: calc(100vw + 60px);
    height: calc(100vh + 60px);
    top: -30px;
    left: -30px;
    position: absolute;
    z-index: -1;
    filter: blur(0px);
}

.loading-text {
  font-size: 50px;
  color: #fff;
}