body{
  font-family: 'Montserrat';
  background: #3e2469;
}

.container{
  text-align: center;
  width: 400px;
  height: 320px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fade-container{
  border-radius: 25px;
  background: #f36e21;
  width: 400px;
  height: 300px;
  position: relative;
  transition: background 0.15s ease-in-out;
}

.fade-container:hover{
  cursor: pointer;
}

.fade{
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);  
  position: absolute;
  text-transform: uppercase;
  font-size: 5em;
  color: #3e2469;
  text-align: center;
  width: 260px;
}

.bounceInDown{
  opacity: 0;
  -webkit-animation: bounceInDown 1s;
  animation: bounceInDown 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.fadeInDown{
  opacity: 0;
  -webkit-animation: fadeInDown 1s;
  animation: fadeInDown 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }

  75% {
    opacity: 1;
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }

  90% {
    opacity: 1;
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.nav {
  position: fixed;
  left: 0;
  bottom:0;
  width: 100%;
  background-color: #000;
  color: #fff;
  opacity: 0.75;
  text-align: center;
  margin-bottom: 0;
  padding: 10px 0;
}