.loader-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #242f3f;
  display:flex;
  justify-content: center;
  align-items: center;
  z-index: 15;
}
.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #Fff;
  animation: loader 2s infinite ease;
  z-index: 15;
}
.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
  z-index: 15;
}
@keyframes loader {
  0% { transform: rotate(0deg);}
  25% { transform: rotate(180deg);}
  50% { transform: rotate(180deg);}
  75% { transform: rotate(360deg);}
  100% { transform: rotate(360deg);}
}

@keyframes loader-inner {
  0% { height: 0%;}
  25% { height: 0%;}
  50% { height: 100%;}
  75% { height: 100%;}
  100% { height: 0%;}
}

body {
  margin: 0;
  padding: 0;
  width:100vw;
  height: 100vh;
  background-color: #eee;
}
.content {
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
  height:100%;
}

.button1 {
  position: absolute;
  border: none;
  color: white;
  padding: 3vh 3vw;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 2vw;
  margin: 2% 70%;
  cursor: pointer;
  font-family: 'Julius Sans One', sans-serif;
}
.button1 {background-color: #8d8d8d;}

.button2 {
  position: absolute;
  border: none;
  color: white;
  padding: 3vh 3vw;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 2vw;
  margin: 2% 85%;
  cursor: pointer;
  font-family: 'Julius Sans One', sans-serif;
}
.button2 {background-color: #8d8d8d;}

.start{
  position: absolute;
  color:black;
  letter-spacing: 1px;
  line-height: 1.4;
  top: 90%;
  font-size: 1.2vw;
  padding-top: 3%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  font-family: 'Julius Sans One', sans-serif;
}

.img-1{
  width: 5.8vw;
  position: absolute;
  bottom: 2vh;
  left: 8vw;
}
.img-2{
  width: 6vw;
  position:absolute;
  bottom: 2vh;
  left: 1.2vw;
}
