@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --blue: #699BF7;
  --red: #FC5151;
  --light-yellow: #FFE100;
  --yellow: #FFCE42;
  --green: #2ECC71;
  --violet: #7D3CFF;
  --behance: #0057ff;
  --purple: #9B59B6;
}

::-webkit-scrollbar {
  width: 6px;
}

body {
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  scrollbar-width: thin;
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1 {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  color: black;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  color: black;
  font-size: 1.2rem;
}

h3 {
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  color: #858585;
  font-size: 1.2rem;
}

p {
  font-family: "Roboto", sans-serif;
  color: #858585;
}

button {
  outline: none;
  height: 40px;
  border-radius: 0;
  border: solid 3px #000000;
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 0;
  padding: 0 .5rem;
  padding-bottom: 6px;
  -webkit-box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.2);
}

button:active {
  height: 34px;
  padding-bottom: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translate(0, 6px);
          transform: translate(0, 6px);
}

.card {
  width: 280px;
  height: 343px;
  border: solid 3px black;
  border-radius: 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 280px auto;
      grid-template-rows: 280px auto;
  overflow: hidden;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.card .illustration {
  display: -ms-grid;
  display: grid;
  place-content: center;
}

.card:hover {
  margin-top: -20px;
}

body {
  background-color: white;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  height: 100vh;
}

a {
  text-decoration: none;
}

h1 {
  color: #363636;
}

h2 {
  font-size: 1.5rem;
  text-align: center;
  border-top: solid 3px;
  padding: 0;
  margin: auto;
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@-webkit-keyframes satellite-back {
  0% {
    -webkit-transform: translate(-80px, 80px);
            transform: translate(-80px, 80px);
    visibility: visible;
  }
  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    visibility: hidden;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    visibility: hidden;
  }
}

@keyframes satellite-back {
  0% {
    -webkit-transform: translate(-80px, 80px);
            transform: translate(-80px, 80px);
    visibility: visible;
  }
  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    visibility: hidden;
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    visibility: hidden;
  }
}

@-webkit-keyframes satellite-front {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    visibility: visible;
  }
  50% {
    -webkit-transform: translate(-80px, 80px);
            transform: translate(-80px, 80px);
    visibility: hidden;
  }
  100% {
    -webkit-transform: translate(-80px, 80px);
            transform: translate(-80px, 80px);
    visibility: hidden;
  }
}

@keyframes satellite-front {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    visibility: visible;
  }
  50% {
    -webkit-transform: translate(-80px, 80px);
            transform: translate(-80px, 80px);
    visibility: hidden;
  }
  100% {
    -webkit-transform: translate(-80px, 80px);
            transform: translate(-80px, 80px);
    visibility: hidden;
  }
}

#developer #circle {
  -webkit-transform-origin: 85px 66px;
          transform-origin: 85px 66px;
  -webkit-animation: rotate infinite 5s linear;
          animation: rotate infinite 5s linear;
}

#developer .satelite#front {
  -webkit-animation: satellite-front 3s ease-in-out forwards infinite;
          animation: satellite-front 3s ease-in-out forwards infinite;
  visibility: hidden;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

#developer .satelite#back {
  -webkit-animation: satellite-back 3s ease-in-out forwards infinite;
          animation: satellite-back 3s ease-in-out forwards infinite;
  visibility: hidden;
}

#accodius-avatar {
  background-color: #2e222f;
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
}
/*# sourceMappingURL=index.css.map */