*{
    margin: 0;
    padding: 0;
    font-family: HK Grotesk, Avenir, Montserrat, Corbel, source-sans-pro, system-ui, -apple-system, sans-serif;;
}

.maintainance_loader{
    height: 100vh;
    background: rgb(28, 1, 55);
    color: #fcfcf5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.maintainance_loader img{
    width: 300px;
}

.loader {
    margin-top: 30px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid rgb(221, 0, 255);
    border-bottom: 16px solid rgb(91, 195, 255);
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

@media only screen and (max-width: 720px) {
    .maintainance_loader img{
        width: 200px;
    }
    .maintainance_loader{
        font-size: 10px;
    }
    .loader {
        width: 30px;
        height: 30px;
      }
}


body{
    background: #fcfcf5;
}
main{
    display: flex;
    flex-direction: column;
}

.header_div{
    width: 100%;
    height: 100px;
}

@media only screen and (max-width: 720px) {
    .header_div{
        height: 50px;
    }
}

