#no-script {
    position: fixed;
    display: flex;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(0,44,124,.95);
    color: #fff;
    width: 100%;
    padding: 30px;
  }
  
  #no-script-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 3rem;
  }
  
  #no-script-img {
    width: 350px;
    margin-bottom: 32px;
  }
  
  #no-script-maintext {
    font-size: 32px;
    line-height: 36px;
  }
  
  #no-script-subtext, #no-script-link {
    font-size: 1.5rem;
  }
  
  #no-script-subtext a, #no-script-link{
    color: #ff66bc;
    text-decoration: underline;
  }
  
  @media screen and (max-width: 758px) {
    #no-script-maintext {
      font-size: 20px;
      line-height: 24px;
    }
  
    #no-script-subtext, #no-script-link {
        font-size: 16px;
        line-height: 20px;
    }
  
    #no-script-img {
      width: 200px;
    }
  }