* {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  position : relative;
  overflow-y: hidden;
  overflow-x: hidden;
}

#title {
  position: absolute;
  top: 30%;
  left: 0;
  z-index: 100;
  text-align: center;
  width: 100%;
  font-size: 50px;
  pointer-events: none;
}

#bg-image {
  position: relative;
  background-color: whitesmoke;
  background-position: center 20%;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100vh;
}

#loading-container {
  position: absolute;
  background-color: rgba(0,0,0, 0.6);
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
}

#loading-content {
  position: relative;
  top: 30%;
  text-align: center;
}

#loading-content h2 {
  color: whitesmoke;
}

.lds-dual-ring {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 50px;
  height: 50px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid skyblue;
  border-color: skyblue transparent skyblue transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

