@font-face {
    font-family: OutRun;
    src: url("https://jackphilippi.com.au/cdn/fonts/outrun_future.otf") format("opentype");
  }

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: aqua;
  height: 100vmin;
  overflow: hidden;
  background-image: url("images/background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.background{
    position: absolute;
    width: 100vw;
    bottom: 54%;
    left: 50%;
    transform: translateX(-50%);
}
.spin {
    position: relative;
    top: -35px;
    /* margin-left: auto; */
    /* margin-right: auto; */
  width: 300px;
  z-index: 101;
}
.spin:hover {
  width: 300px;
  background-color: none;
  /* border-radius: 10%; */
  animation-name: spin;
  animation-duration: 4s;
}
.codeweb {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.socialimgs {
  width: 50px;
  height: 50px;
}
.topleft {
  display: flex;
  position: absolute;
  left: 20%;
  top: 30%;
}
.topright {
  display: flex;
  position: absolute;
  right: 20%;
  top: 30%;
}
.bottomleft {
  display: flex;
  position: absolute;
  left: 20%;
  bottom: 40%;
}
.bottomright {
  display: flex;
  position: absolute;
  right: 20%;
  bottom: 40%;
}
.cdn {
  background-color: rgb(243, 173, 42);
  border-radius: 50%;
}
.cdn:active {
  background-color: blueviolet;
  box-shadow: 6px 6px 0 black;
}
.cdn:hover {
  animation: enlarge 2s;
}
.insta {
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  border-radius: 10px;
}
.insta:active {
  background: blueviolet;
  box-shadow: 6px 6px 0 black;
}
.insta:hover {
  background: blueviolet;
  box-shadow: 6px 6px 0 black;
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}
.twitter {
  /* background-color: lightskyblue; */
  position: relative;
  border-radius: 10px;
  z-index: 10;
}
.twitter:active {
  background-color: blueviolet;
  box-shadow: 6px 6px 0 black;
}
.triangle-up {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid aqua;
      transform: translate(50px);
  }
.topright:hover .twitter {
  animation: fadeOut 2s forwards;
}
.topright:hover .triangle-up{
    animation: fade 2s forwards;
}
.facebook {
  background-color: blue;
  border-top-left-radius: 10px;
}
.facebook:active {
  background-color: blueviolet;
  box-shadow: 6px 6px 0 black;
}
.facebook:hover {
  animation-name: drip;
  animation-duration: 4s;
}
@keyframes drip {
  0% {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
  40% {
    transform: translate3d(0, 30%, 0) scale3d(0.7, 1.5, 1);
  }
  100% {
    transform: translate3d(0, 100%, 0) scale3d(1.5, 0.7, 1);
  }
}
.drip {
  transform-origin: 50% 50%;
  animation: jump 0.5s linear alternate infinite;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  50% {
    background-color: transparent;
    opacity: 0;
  }
  100% {
    background-color: aqua;
    opacity: 1;
  }
}
.fade-out {
  animation: fadeOut 2s;
  opacity: 0;
}
@keyframes enlarge {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(2);
  }
}
@keyframes spin {
  0% {
    background-color: white;
    box-shadow: 6px 6px 0 darkgrey;
    transform: rotate(0deg);
    translate:(0px, -35px);
  }
  100% {
    background-color: white;
    box-shadow: 6px 6px 0 black;
    transform: rotate(360deg);
  }
}
@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
@keyframes fade {
    from{
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}


  html, body {
    height: 100%;
    overflow: hidden;
  }
   
  body {
    text-align: center;
    font-family: "Open Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #111;
    background: linear-gradient(#0c141f 40%, #cf33d9 41%, #0c141f 60%);
  }
   
  .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
   
  .inner-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    margin: 0 auto;
    perspective: 180px;
    perspective-origin: 50% 40%;
  }
   
  .landscape {
    position: absolute;
    width: 200%;
    left: -50%;
    height: 130%;
    bottom: -30%;
    background-image: -webkit-linear-gradient(top, #CF33D9 2px, transparent 2px), -webkit-linear-gradient(left, #CF33D9 2px, transparent 2px);
    background-size: 50px 50px, 80px 80px;
    background-position: -1px -1px, -1px -1px;
    transform: rotateX(85deg);
    animation: moveUp 1s infinite linear;
  }
   
  .nrw {
    z-index: 50;
  }
   
  .triangle {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 250px solid transparent;
    border-right: 220px solid transparent;
    border-bottom: 200px solid rgba(5, 5, 5, 0.33);
    transform: rotate(20deg);
    top: 25%;
  }
   
  .new {
    font-size: 5.2em;
    text-transform: uppercase;
    font-family: "Open Sans";
    color: transparent;
    position: absolute;
    display: block;
    letter-spacing: -15px;
    transform: rotate(-10deg) skew(-20deg) translateX(-80px) translateY(-120px);
    z-index: 22;
  }
  .new > .letter {
    -webkit-text-stroke: 2px #F4C6F4;
    margin-top: -8px;
    display: inline-block;
    padding: 0 1px;
    animation: glow 2.5s linear infinite;
  }
  
  @keyframes moveUp{
    0% {
      background-position: -1px -1px, -1px -1px;
    }
    100% {
      background-position: -50px -50px, -1px -1px;
    }
  }
   
  @keyframes glow {
    0% {
      filter: drop-shadow(0 0 6px #CF33D9) drop-shadow(0 0 6px #CF33D9);
    }
    50% {
      filter: drop-shadow(0 0 1px #CF33D9) drop-shadow(0 0 1px #CF33D9);
    }
    100% {
      filter: drop-shadow(0 0 6px #CF33D9) drop-shadow(0 0 6px #CF33D9);
    }
  }
  .retro {
    font-size: 5.5em;
    font-weight: 800;
    display: block;
    text-transform: uppercase;
    letter-spacing: -12px;
    transform: rotate(-10deg) skew(-15deg);
    margin-bottom: -20px;
  }
  .retro > .letter {
    display: inline-block;
    padding: 0 10px;
    margin: 0 -10px;
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIzMiUiIHN0b3AtY29sb3I9IiMxODE5MWEiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzE1N2JlNiIvPjxzdG9wIG9mZnNldD0iNTIlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIi8+PHN0b3Agb2Zmc2V0PSI1NiUiIHN0b3AtY29sb3I9IiMxODE5MWEiLz48c3RvcCBvZmZzZXQ9Ijg1JSIgc3RvcC1jb2xvcj0iIzE1N2JlNiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(32%, #18191a), color-stop(40%, #157be6), color-stop(52%, #ffffff), color-stop(56%, #18191a), color-stop(85%, #157be6), color-stop(100%, #ffffff));
    background: -moz-linear-gradient(top, #18191a 32%, #157be6 40%, #ffffff 52%, #18191a 56%, #157be6 85%, #ffffff);
    background: -webkit-linear-gradient(top, #18191a 32%, #157be6 40%, #ffffff 52%, #18191a 56%, #157be6 85%, #ffffff);
    background: linear-gradient(to bottom, #18191a 32%, #157be6 40%, #ffffff 52%, #18191a 56%, #157be6 85%, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFF;
  }
   
  .wave {
    position: absolute;
    z-index: 10;
    font-family: "OutRun", "Helvetica", sans-serif;
    font-size: 3.8em;
    color: #FA26F7;
    text-transform: uppercase;
    letter-spacing: -10px;
    top: 45%;
    transform: rotate(-3deg) skew(-3deg) translate(50px);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
  }