@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600&display=swap');

* {
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    font-size: 18px;
    color: #434343;
    background-color: #fff;
}

img {
    object-fit: cover;
    object-position: 50% 50%;
    vertical-align: middle;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

::selection {
    background: #c13327;
    color: #fff;
}

::-moz-selection {
    background: #c13327;
    color: #fff;
}

.grid {
  display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
}

.wrapper {
    width: 100%;
    height: 100vh;
    background-image: url('../img/bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

a.return {
    background-color: #C23327;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 400;
    padding: 3px 20px 6px 20px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.2s ease;
}

a.return:hover {
    background-color: #828282;
}

.message {
  margin: auto;
  text-align: center;
}

.message .logo {
  width: 83px;
  margin: 0 auto 20px auto;
}

.message .bigTitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 56px;
  letter-spacing: -3px;
}

.message .subTitle {
  color: #858585;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 2px;
  max-width: 500px;
  margin: 10px 0 20px 0;
      padding: 0 10px;
}

.developers {
  width: 110px;
  margin: auto;
  position: fixed;
  bottom: 5%;
}

/* page transition */
.fade-in {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;
  
    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
  
    -webkit-animation-duration:0.3s;
    -moz-animation-duration:0.3s;
    animation-duration:0.3s;

    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }

  @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
/* page transition */

.move-up {
    opacity: 0;
    -webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            -webkit-animation-delay: 1s;
            -moz-animation-delay: 1s;
            animation-delay: 1s;
}

 @-webkit-keyframes slide-top {
    0% {
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
              opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
              opacity: 1;
    }
  }
  @keyframes slide-top {
    0% {
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
              opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
              opacity: 1;
    }
  }

  .move-up2 {
    opacity: 0;
    -webkit-animation: slide-top2 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: slide-top2 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            -webkit-animation-delay: 1.3s;
            -moz-animation-delay: 1.3s;
            animation-delay: 1.3s;
}

 @-webkit-keyframes slide-top2 {
    0% {
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
              opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
              opacity: 1;
    }
  }
  @keyframes slide-top2 {
    0% {
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
              opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
              opacity: 1;
    }
  }

    .move-up3 {
    opacity: 0;
    -webkit-animation: slide-top3 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: slide-top3 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            -webkit-animation-delay: 1.5s;
            -moz-animation-delay: 1.5s;
            animation-delay: 1.5s;
}

 @-webkit-keyframes slide-top3 {
    0% {
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
              opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
              opacity: 1;
    }
  }
  @keyframes slide-top3 {
    0% {
      -webkit-transform: translateY(20px);
              transform: translateY(20px);
              opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
              opacity: 1;
    }
  }

  .fade-btn {
    opacity: 0;
    -webkit-animation: fadebtn 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: fadebtn 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            -webkit-animation-delay: 1.7s;
            -moz-animation-delay: 1.7s;
            animation-delay: 1.7s;
}

 @-webkit-keyframes fadebtn {
    0% {

              opacity: 0;
    }
    100% {

              opacity: 1;
    }
  }
  @keyframes fadebtn {
    0% {

              opacity: 0;
    }
    100% {

              opacity: 1;
    }
  }

mark {
  background-color: #c23529;
  color: #fff;
}

@media (max-width: 767px) {
  .wrapper {
    background-image: url('../img/bg-m.png');
  }
    .message .logo {
      width: 70px;
      margin: 0 auto 10px auto;
    }
    .message .bigTitle {
      font-size: 32px;
      letter-spacing: -2px;
  }
  .message .subTitle {
    color: #858585;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 1px;
    max-width: 500px;
    margin: 10px 0 10px 0;

}
a.return {
    font-size: 10px;
    padding: 3px 20px 4px 20px;
    letter-spacing: 1px;
}
.developers {
    width: 60px;
    bottom: 2%;
}
}  