@import url(https://fonts.googleapis.com/css?family=Press+Start+2P);
.scroll {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  top: 580px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.mouse {
  width: 1.5rem;
  height: 3rem;
  border: 2px solid #fff;
  border-radius: 2rem;
  margin-bottom: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mouse span {
  width: .5rem;
  height: .5rem;
  background-color: #fff;
  display: block;
  border-radius: 50%;
  margin: auto;
  -webkit-animation: scroll 1s linear infinite;
          animation: scroll 1s linear infinite;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-1rem);
            transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
}

.contact {
  position: absolute;
  text-align: center;
  padding: 3rem;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.contact h1 {
  font-size: 20px;
  font-family: 'Press Start 2P', cursive;
  width: 50%;
  position: relative;
  left: 300px;
  color: black;
  text-shadow: 10px 10px 5px rgba(94, 104, 121, 0.418);
}

.contact .center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.contact .center img {
  max-width: 350px;
  height: 400px;
  margin: 1rem;
  position: relative;
  left: 130px;
  z-index: 1;
  -webkit-box-shadow: 10px 10px 5px rgba(94, 104, 121, 0.418);
          box-shadow: 10px 10px 5px rgba(94, 104, 121, 0.418);
}

.contact .center i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 25px;
  padding: .5rem;
  color: #000;
  position: relative;
  left: 130px;
}

.contact .center i:hover {
  color: #07d89d;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 121, 206, 0.99);
            box-shadow: 0 0 0 0 rgba(255, 121, 206, 0.99);
  }
  70% {
    -webkit-box-shadow: 0 0 0 2rem rgba(247, 163, 240, 0);
            box-shadow: 0 0 0 2rem rgba(247, 163, 240, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 163, 240, 0);
            box-shadow: 0 0 0 0 rgba(247, 163, 240, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 121, 206, 0.99);
            box-shadow: 0 0 0 0 rgba(255, 121, 206, 0.99);
  }
  70% {
    -webkit-box-shadow: 0 0 0 2rem rgba(247, 163, 240, 0);
            box-shadow: 0 0 0 2rem rgba(247, 163, 240, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(247, 163, 240, 0);
            box-shadow: 0 0 0 0 rgba(247, 163, 240, 0);
  }
}

.scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.scene .blob-1 path {
  fill: url(#gradient-1);
}

.scene .blob-2 path {
  fill: url(#gradient-2);
}

.scene .blob-3 path {
  fill: url(#gradient-3);
}

.scene .blob-4 path {
  fill: url(#gradient-4);
}

.scene .blob-5 path {
  fill: url(#gradient-5);
}

.scene .blob-6 path {
  fill: url(#gradient-6);
}

.scene path:first-of-type {
  fill-opacity: 0.1;
}

.scene path:nth-of-type(2) {
  fill-opacity: 0.2;
}

.scene path:nth-of-type(3) {
  fill-opacity: 0.3;
}

.scene path:nth-of-type(4) {
  fill-opacity: 0.4;
}

.scene path:nth-of-type(5) {
  fill-opacity: 0.5;
}

.scene path:nth-of-type(6) {
  fill-opacity: 0.6;
}

.menu {
  position: relative;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0 0 25vw;
  font-size: 4vw;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.menu__item {
  color: var(--color-menu);
  line-height: 1.25;
  text-transform: lowercase;
  letter-spacing: -0.025em;
  text-indent: -0.025em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.menu__item:hover,
.menu__item:focus {
  color: var(--color-menu-hover);
}

.menu__item::before {
  content: '';
  width: 60%;
  height: 25px;
  background: linear-gradient(45deg, #f19872, #e86c9a);
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: scale3d(0, 1, 1);
          transform: scale3d(0, 1, 1);
}

.menu__item:nth-child(2)::before {
  background: linear-gradient(45deg, #0947db, #07d89d);
}

.menu__item:nth-child(3)::before {
  background: linear-gradient(45deg, #ee2d29, #f8ae2c);
}

.menu__item:nth-child(4)::before {
  background: linear-gradient(45deg, #3a3d98, #6f22b9);
}

.menu__item:nth-child(5)::before {
  background: linear-gradient(45deg, #9d316e, #de2d3e);
}

.menu__item:nth-child(6)::before {
  background: linear-gradient(45deg, #00ac53, #23c3e0);
}
/*# sourceMappingURL=footer.css.map */