@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
body {
    margin: 0;
    padding: 0;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    color: #282f3e;
    background-color: #ffffff;
   font-family: 'Plus Jakarta Sans', sans-serif;
}

.under-construction{
   height: 100vh;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}
.under-construction h1{
    font-size: 60px;
    color: #f69a38;
    line-height: 70px;
    font-weight: 800;
    text-transform: uppercase;
}
.under-construction p{
    width: 60%;
    margin: 0 auto 25px;
}
.under-construction p a{  
    color: #122e6a; 
    text-decoration: none;
}
.under-construction p a:hover{
    text-decoration: underline;
}
.logo{
    width: 300px;
    margin: 0 auto;
    position: relative;
}
.logo img{
    width: 100%;
    z-index: 2;
    position: relative;
}
.gears{
    position: absolute;
    top: 0;
}
.gear-rotate{
    width: 196px;
    height: 199px;
    top: 0; 
    left: 51px; 
    background:url(../images/gear.png) no-repeat;
    background-size: contain;
    position: absolute;
    -webkit-animation: 3s gear-rotate linear 0.5s infinite;
    -moz-animation: 3s gear-rotate linear 0.5s infinite;
    animation: 3s gear-rotate linear 0.5s infinite;
}

@-webkit-keyframes gear-rotate {
  0% { 
    -webkit-transform: rotate(0deg);
  }
  100% { 
    -webkit-transform: rotate(360deg); 
  }
}
@-moz-keyframes gear-rotate{
  0% { 
    transform: rotate(0deg);
  }
  100% { 
    transform: rotate(360deg); 
  }
}
@keyframes gear-rotate {
  0% { 
    transform: rotate(0deg); 
  }
  100% { 
    transform: rotate(360deg); 
  }
}

@media screen and (max-width: 767px) {
    .under-construction h1{
        font-size: 40px;
        line-height: 50px;
    }
    .under-construction p{
        width: 80%;
    }
    body {
    font-size: 20px;
    line-height: 26px;
    }
    .under-construction{
    padding: 0 4%;
    }
}
@media screen and (max-width: 575px) {
    .under-construction h1{
        font-size: 34px;
        line-height: 40px;
    }
    .under-construction p{
        width: 100%;
    }
    body {
    font-size: 16px;
    line-height: 20spx;
}
.logo {
  width: 200px; 
}
.gear-rotate {
  width: 130px;
  height: 133px;
  left: 34px;
}
}