@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
  animation-duration: 2s;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
  animation-duration: 2s;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

@keyframes flip {
  100% {
    transform: rotateY(360deg);
  }
}
.infiniteFlip {
  animation-name: flip;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jelloInfinite {
  animation-name: jello;
  animation-iteration-count: infinite;
  animation-duration: 2s;
}

@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.backInDown {
  animation-name: backInDown;
  animation-duration: 2s;
}

@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.backInUp {
  animation-name: backInUp;
  animation-duration: 2s;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
  animation-duration: 2s;
}

.hoverheadShake:hover {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
  animation-duration: 1.5s;
}

.hovertada:hover {
  animation-name: tada;
  animation-duration: 1.5s;
}

@font-face {
  font-family: Futura;
  src: url(/src/assets/fonts/futura/Futura\ Bold.ttf);
}
@font-face {
  font-family: FuturaLight;
  src: url(/src/assets/fonts/futura/Futura\ Light.ttf);
}
@font-face {
  font-family: FuturaBook;
  src: url(/src/assets/fonts/futura/Futura\ Book.ttf);
}
@font-face {
  font-family: FuturaHeavy;
  src: url(/src/assets/fonts/futura/Futura\ Heavy.ttf);
}
.coded-txt-center {
  text-align: center;
}

.coded-main-title {
  color: #570861;
  font-family: Futura;
}

.coded-dpl-inline-block {
  display: inline-block;
}

.coded-hero {
  background: white;
  color: #2C0431;
}
.coded-hero .coded-cta {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .coded-hero h1 {
    font-size: 21px;
  }
}

.coded-section, .coded-hero {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  border-bottom: 0;
  padding: 0 5.6rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .coded-section, .coded-hero {
    padding: 50px 0px;
  }
}
.coded-btn {
  border: none;
  border-radius: 35px;
  opacity: 1;
  padding: 7px;
  width: 100%;
  letter-spacing: 0px;
  max-width: 180px;
  cursor: pointer;
  font-size: 22px;
}
.coded-btn a {
  text-decoration: none;
  color: unset;
}
.coded-btn.coded-btn-primary {
  background: #570861 0% 0% no-repeat padding-box;
  color: white;
}
.coded-btn.coded-btn-primary-outlined {
  background: white 0% 0% no-repeat padding-box;
  color: #570861;
  border: 2px solid #570861;
}

@media screen and (max-width: 1500px) {
  .coded-btn {
    padding: 5px;
  }
}
@media screen and (max-width: 1300px) {
  .coded-btn {
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  .coded-btn {
    padding: 7px;
  }
}
@media screen and (max-width: 576px) {
  .coded-btn {
    padding: 5px;
    max-width: 120px;
    font-size: 20px;
  }
}
.coded-container {
  display: block;
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
}
@media screen and (max-width: 1500px) {
  .coded-container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1200px) {
  .coded-container {
    max-width: 1000px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1199) {
  .coded-container {
    max-width: 1160px;
  }
}
@media screen and (max-width: 1159px) {
  .coded-container {
    max-width: 992px;
  }
}
@media screen and (max-width: 768px) {
  .coded-container {
    max-width: 765px;
  }
}
@media screen and (max-width: 576px) {
  .coded-container {
    padding: 0px 50px;
  }
}

body {
  margin: 0;
  /* scroll bar */
  /*end scroll bar*/
}
body * {
  font-family: FuturaLight;
}
body h1 {
  font-weight: normal;
}
body::-webkit-scrollbar {
  width: 15px;
}
body::-webkit-scrollbar-track {
  background: none;
}
body::-webkit-scrollbar-thumb {
  background: #570861;
  border-radius: 30px;
}
body .connect {
  display: flex;
  justify-content: center;
  gap: 10px;
  background-color: none;
  margin-top: 25px;
}
body .connect a {
  display: block;
  text-align: center;
  padding: 16px;
  color: white;
  font-size: 20px;
  background-color: #CDB5D0;
  border-radius: 50px;
}
body .connect a:hover {
  background-color: #570861;
}
body .connect .linkedin {
  background: #007bb5;
  color: white;
}
body .connect .github {
  background-color: #000;
}
body .connect .github:hover {
  background-color: #570861;
}
body .connect .whatsapp {
  background: #00cc00;
  color: white;
}
body .about-me {
  background-color: #570861;
  color: white;
}

/*# sourceMappingURL=main.css.map */
