body {
  margin: 0;
  padding: 0;
}

main {
  height: auto;
}

.footer {
  position: relative;
  width: 100%;
  height: 50vh;
  background: #3586ff;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}

.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}

.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("https://i.ibb.co/wQZVxxk/wave.png");
  background-size: 1000px 100px;
}

.wave#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  -webkit-animation: animateWaves 4s linear infinite;
          animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  -webkit-animation: animate 4s linear infinite !important;
          animation: animate 4s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  -webkit-animation: animateWaves 3s linear infinite;
          animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  -webkit-animation: animate 3s linear infinite;
          animation: animate 3s linear infinite;
}

@-webkit-keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}
@-webkit-keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}
@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}
.image-container, .text-container, .gif-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 20px;
}

.gif-img {
  width: 90%;
}

#nav-container {
  background-color: rgb(255, 228, 196);
}

.nav-link {
  margin-bottom: 12px;
}

.about, .text-container, .container-fluid {
  width: 100%;
}

.container-fluid {
  padding-top: 100px;
}

.code-logo {
  width: 40px;
  display: block;
  padding-bottom: 10px;
}

.profile-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
}

.animate-charcter {
  text-transform: uppercase;
  background-image: linear-gradient(-225deg, #231557 0%, #44107a 29%, #ff1361 67%, #fff800 100%);
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: textclip 2s linear infinite;
          animation: textclip 2s linear infinite;
  display: inline-block;
  font-size: 40px;
  font-weight: bold;
}

@-webkit-keyframes textclip {
  to {
    background-position: 200% center;
  }
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
#about {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-fluid {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.col-lg-4 {
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center;
  align-content: center;
  size: 50%;
  margin-left: -15px;
}

p {
  width: auto;
  margin: 10px 20% 10px 20%;
  padding: 40px 0px;
  text-align: center;
}

input, textarea, #send-btn {
  margin: 10px auto 10px auto;
  display: block;
  width: 60%;
}

.email-container, .cv-container {
  text-align: center;
  padding-top: 30px;
  height: 90px;
}

.git-hub, .linked-in {
  color: black;
}

.icon-container {
  display: flex;
  justify-content: space-around;
  width: 80px;
}

.social-container {
  height: 400px;
  padding-top: 50px;
}

.send-open {
  color: black;
  border: 1px solid black;
  padding: 10px 20px;
}

.send-open:hover {
  color: white;
  background-color: black;
  border-width: 10px;
}

@media screen and (min-width: 768px) {
  .about {
    display: flex;
    justify-content: center;
  }
  .gif-img {
    width: 60%;
  }
}/*# sourceMappingURL=style.css.map */