.locked-page{
  height: 100vh;
  min-height: 700px;
  background-image: linear-gradient(to left top, #231d3c, #442455, #6e2466, #9d1b6c, #ca0067);
  display: flex;
  align-items: center;
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    >div{
      width: 60%;
      img{
        width: 60%;
        display: block;
        margin: auto;
        @include media-breakpoint-down(md) {
          width: 90%;
        }
      }
    }
  }

  h1, h2{
    color: $themeWhite;
    text-align: center;
    position: relative !important;
    padding: 0;
    top: unset;
    bottom: unset;
    margin-bottom: $sizeLarge;
    text-transform: uppercase;
    font-size: 2em;
    @include media-breakpoint-down(md) {
      font-size: 1.5em;
    }
  }

  h1{
    margin-top: $sizeLarge*2;
    font-size: 4em;
    @include media-breakpoint-down(md) {
      font-size: 1.6em;
    }
  }

}