.styles {
  color: #241263;
  color: #1a0b50;
  color: #5d3fcb;
  color: #170d3b;
  color: #4210fc;
  color: #6d27be;
  color: #6012d5;
  color: #1c0d4f;
  color: #41b3f9;
  color: #a20c98;
  color: #ff16b9;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Darker Grotesque", sans-serif;
  outline: none;
  scroll-behavior: smooth;
}

h1 {
  font-size: 10.5vw;
  margin: 10px;
}

@media (min-width: 800px) {
  h1 {
    font-size: 5.5vw;
  }
}

h2 {
  font-size: 8.5vw;
  margin: 20px;
}

@media (min-width: 800px) {
  h2 {
    font-size: 3.5vw;
  }
}

h3 {
  font-size: 6vw;
  margin: 20px;
}

@media (min-width: 800px) {
  h3 {
    font-size: 2.5vw;
  }
}

button {
  color: white;
  font-weight: bolder;
  margin: 40px;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#1a0b50), to(#6d27be));
  background-image: linear-gradient(to top, #1a0b50, #6d27be);
  border: none;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.315);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.315);
}

a {
  text-decoration: none;
  color: white;
}

html {
  height: 0vh;
}

body {
  position: relative;
  color: white;
  background-color: #170d3b;
}

section {
  margin-bottom: 60px;
}

#style-16::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #38257f;
  border-radius: 10px;
}

#style-16::-webkit-scrollbar {
  width: 10px;
  background-color: #696969;
}

#style-16::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #fff;
  background-image: -webkit-linear-gradient(top, #a20c98 0%, #7653f5 100%);
}

.absolute {
  position: absolute;
}

.landing {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 70vh;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5d3fcb), color-stop(#4a32a4), color-stop(#38257f), color-stop(#27195c), to(#170d3b));
  background-image: linear-gradient(to bottom, #5d3fcb, #4a32a4, #38257f, #27195c, #170d3b);
  color: white;
}

@media (max-width: 400px) {
  .landing {
    height: 160vw;
  }
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  font-size: 1.5rem;
  font-weight: 600;
}

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

.navbar .nav__links .nav__link {
  margin: 15px;
  padding: 10px 20px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#1a0b50), to(#6d27be));
  background-image: linear-gradient(to top, #1a0b50, #6d27be);
  border: none;
  cursor: pointer;
}

.header {
  height: 60vh;
  margin-left: 10vw;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.header .bubble4 {
  z-index: 0;
  margin-right: 20vw;
  height: 150px;
  width: 150px;
  right: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
}

@media (min-width: 900px) {
  .header .bubble4 {
    margin-left: 15vw;
    opacity: 0.9;
  }
}

.header .bubble5 {
  z-index: 0;
  margin-right: 5vw;
  height: 350px;
  width: 350px;
  right: 40px;
  top: 50;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: upDown 3s infinite 0.5s ease;
          animation: upDown 3s infinite 0.5s ease;
  opacity: 0;
}

@media (min-width: 900px) {
  .header .bubble5 {
    margin-left: 10vw;
    opacity: 1;
  }
}

@-webkit-keyframes upDown {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
            transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes upDown {
  0% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(8%);
            transform: translateY(8%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.header .bubble6 {
  z-index: 0;
  margin-right: 5vw;
  height: 100px;
  width: 100px;
  right: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
}

@media (min-width: 900px) {
  .header .bubble6 {
    margin-left: 15vw;
    opacity: 0.9;
  }
}

@media (min-width: 600px) {
  .header {
    margin-left: 15vw;
  }
}

.header .landing__text {
  font-family: "Darker Grotesque", sans-serif;
  font-weight: bolder;
  font-size: 13vw;
  -webkit-animation: revealAnimation 0.5s forwards 0s linear;
          animation: revealAnimation 0.5s forwards 0s linear;
}

@media (min-width: 900px) {
  .header .landing__text {
    font-size: 7vw;
  }
}

.header .landing__subText {
  font-family: "Darker Grotesque", sans-serif;
  font-weight: lighter;
  font-size: 6vw;
  -webkit-animation: revealAnimation 0.5s forwards 0s linear;
          animation: revealAnimation 0.5s forwards 0s linear;
}

@media (min-width: 900px) {
  .header .landing__subText {
    font-size: 3vw;
  }
}

.header .landing__projectsBtn {
  color: white;
  font-weight: bolder;
  margin: 40px;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1rem;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#1a0b50), to(#6d27be));
  background-image: linear-gradient(to top, #1a0b50, #6d27be);
  border: none;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.315);
          box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.315);
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-animation: revealAnimation 0.5s forwards 0s linear;
          animation: revealAnimation 0.5s forwards 0s linear;
}

@-webkit-keyframes revealAnimation {
  0% {
    -webkit-transform: rotate(10deg) translateY(100px);
            transform: rotate(10deg) translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0) translateY(0);
            transform: rotate(0) translateY(0);
    opacity: 1;
  }
}

@keyframes revealAnimation {
  0% {
    -webkit-transform: rotate(10deg) translateY(100px);
            transform: rotate(10deg) translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0) translateY(0);
            transform: rotate(0) translateY(0);
    opacity: 1;
  }
}

.scroll {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.scroll #mouse-scroll {
  display: block;
}

.scroll #mouse-scroll {
  margin: auto;
  left: 50%;
  top: 80px;
  z-index: 9999;
}

.scroll #mouse-scroll span {
  display: block;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: 0 0 3px 5px;
}

.scroll #mouse-scroll .mouse {
  height: 21px;
  width: 14px;
  border-radius: 10px;
  -webkit-transform: none;
          transform: none;
  border: 2px solid #ffffff;
  top: 170px;
}

.scroll #mouse-scroll .down-arrow-1 {
  margin-top: 6px;
}

.scroll #mouse-scroll .down-arrow-1,
.scroll #mouse-scroll .down-arrow-2,
.scroll #mouse-scroll .down-arrow-3 {
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite;
}

.scroll #mouse-croll .down-arrow-1 {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -webkit-animation-direction: alternate;
}

.scroll #mouse-scroll .down-arrow-2 {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-direction: alternate;
}

.scroll #mouse-scroll .down-arrow-3 {
  -webkit-animation-delay: 0.3s;
  -moz-animation-dekay: 0.3s;
  -webkit-animation-direction: alternate;
}

.scroll #mouse-scroll .mouse-in {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: #ffffff;
  position: relative;
}

.scroll #mouse-scroll .mouse-in {
  -webkit-animation: animated-mouse 1.2s ease infinite;
  moz-animation: mouse-animated 1.2s ease infinite;
}

@-webkit-keyframes animated-mouse {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
}

@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.about {
  margin-top: 30vh;
  height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
}

@media (max-width: 500px) {
  .about {
    margin-top: 5vh;
  }
}

.about .about__para {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  width: 80%;
  font-size: 5.2vw;
  max-width: 800px;
}

@media (min-width: 900px) {
  .about .about__para {
    font-size: 3vw;
  }
}

.about .about__cvBtn {
  -ms-flex-item-align: end;
      align-self: flex-end;
  cursor: pointer;
}

@media (min-width: 900px) {
  .about .about__cvBtn {
    margin-right: 25vw;
  }
}

.projects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 10rem 0;
}

.projects .project__heading {
  margin: 80px 0;
}

.projects .project__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1000px) {
  .projects .project__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.projects .project {
  height: 350px;
  width: 250px;
  margin: 35px;
  background-color: white;
}

.projects .flip-card {
  background-color: transparent;
  height: 400px;
  width: 300px;
  border-radius: 15px;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

@media (max-width: 350px) {
  .projects .flip-card {
    height: 120vw;
    width: 90vw;
  }
}

.projects .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-animation: transformAnimationOff 2s forwards ease-in-out;
          animation: transformAnimationOff 2s forwards ease-in-out;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.projects .flip-card:hover .flip-card-inner {
  -webkit-animation: transformAnimation 2.8s forwards ease;
          animation: transformAnimation 2.8s forwards ease;
}

@-webkit-keyframes transformAnimation {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  40% {
    -webkit-transform: rotateY(200deg);
            transform: rotateY(200deg);
  }
  55% {
    -webkit-transform: rotateY(160deg);
            transform: rotateY(160deg);
  }
  70% {
    -webkit-transform: rotateY(190deg);
            transform: rotateY(190deg);
  }
  84% {
    -webkit-transform: rotateY(170deg);
            transform: rotateY(170deg);
  }
  92% {
    -webkit-transform: rotateY(185deg);
            transform: rotateY(185deg);
  }
  100% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}

@keyframes transformAnimation {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  40% {
    -webkit-transform: rotateY(200deg);
            transform: rotateY(200deg);
  }
  55% {
    -webkit-transform: rotateY(160deg);
            transform: rotateY(160deg);
  }
  70% {
    -webkit-transform: rotateY(190deg);
            transform: rotateY(190deg);
  }
  84% {
    -webkit-transform: rotateY(170deg);
            transform: rotateY(170deg);
  }
  92% {
    -webkit-transform: rotateY(185deg);
            transform: rotateY(185deg);
  }
  100% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}

@-webkit-keyframes transformAnimationOff {
  0% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  40% {
    -webkit-transform: rotateY(-20deg);
            transform: rotateY(-20deg);
  }
  55% {
    -webkit-transform: rotateY(16deg);
            transform: rotateY(16deg);
  }
  70% {
    -webkit-transform: rotateY(-19deg);
            transform: rotateY(-19deg);
  }
  84% {
    -webkit-transform: rotateY(17deg);
            transform: rotateY(17deg);
  }
  92% {
    -webkit-transform: rotateY(-10deg);
            transform: rotateY(-10deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes transformAnimationOff {
  0% {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
  40% {
    -webkit-transform: rotateY(-20deg);
            transform: rotateY(-20deg);
  }
  55% {
    -webkit-transform: rotateY(16deg);
            transform: rotateY(16deg);
  }
  70% {
    -webkit-transform: rotateY(-19deg);
            transform: rotateY(-19deg);
  }
  84% {
    -webkit-transform: rotateY(17deg);
            transform: rotateY(17deg);
  }
  92% {
    -webkit-transform: rotateY(-10deg);
            transform: rotateY(-10deg);
  }
  100% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

.projects .flip-card-front,
.projects .flip-card-back {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.projects .flip-card-front {
  color: white;
  padding: 10px;
  background-size: cover;
}

.projects .flip-card1-front {
  background-image: url("../images/foodfiesta.jpeg");
}

.projects .flip-card2-front {
  background-image: url("../images/covid.jpeg");
}

.projects .flip-card3-front {
  background-image: url("../images/flagow.jpeg");
  background-position: center;
}

.projects .flip-card-front > h1 {
  font-size: 2rem;
  font-weight: 700;
  -webkit-transform: translateZ(60px);
          transform: translateZ(60px);
  background-color: #170d3b9f;
  padding: 0.2em 0.5em;
  border-radius: 15px;
}

.projects .flip-card-back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  padding: 10px;
  background-size: cover;
}

.projects .flip-card1-back {
  background-image: url("https://i.pinimg.com/originals/08/80/99/08809940d40530bfdb457d7a60466657.jpg");
}

.projects .flip-card2-back {
  background-image: url("https://img.freepik.com/free-vector/beautiful-gradient-spring-landscape_23-2148448598.jpg?size=626&ext=jpg");
}

.projects .flip-card3-back {
  background-image: url("https://image.freepik.com/free-vector/scenery-autumn-forest-with-mountain-sky-illustration_105940-204.jpg");
}

.projects .flip-card-back > p {
  height: 80%;
  width: 80%;
  padding: 20px;
  font-size: 1.2rem;
  -webkit-transform: translateZ(80px);
          transform: translateZ(80px);
  background-color: #1a0b50b4;
}

@media (max-width: 330px) {
  .projects .flip-card-back > p {
    font-size: 5vw;
  }
}

.skill__heading {
  text-align: center;
  margin: 80px;
}

.skills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 900px) {
  .skills {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.skills .skills__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  width: 100%;
  margin: 0 50px;
}

@media (min-width: 900px) {
  .skills .skills__container {
    max-width: 600px;
  }
}

.skills .skills__container .skill__name {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-left: 10vw;
}

@media (min-width: 900px) {
  .skills .skills__container .skill__name {
    margin-left: 5vw;
  }
}

.skills .skills__container .skill__progressContainer {
  height: 20px;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
}

.skills .skills__container .skill__progressContainer .skill__progress {
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#1a0b50), to(#6d27be));
  background-image: linear-gradient(to top, #1a0b50, #6d27be);
  border-radius: 15px;
}

.skills .skills__container .skill__progressContainer .skill__animate__html {
  -webkit-animation: animate__html 2s forwards ease;
          animation: animate__html 2s forwards ease;
}

@-webkit-keyframes animate__html {
  0% {
    width: 0;
  }
  100% {
    width: 94%;
  }
}

@keyframes animate__html {
  0% {
    width: 0;
  }
  100% {
    width: 94%;
  }
}

.skills .skills__container .skill__progressContainer .skill__animate__css {
  -webkit-animation: animate__css 2s forwards ease;
          animation: animate__css 2s forwards ease;
}

@-webkit-keyframes animate__css {
  0% {
    width: 0;
  }
  100% {
    width: 95%;
  }
}

@keyframes animate__css {
  0% {
    width: 0;
  }
  100% {
    width: 95%;
  }
}

.skills .skills__container .skill__progressContainer .skill__animate__js {
  -webkit-animation: animate__js 2s forwards ease;
          animation: animate__js 2s forwards ease;
}

@-webkit-keyframes animate__js {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}

@keyframes animate__js {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}

.skills .skills__container .skill__progressContainer .skill__animate__react {
  -webkit-animation: animate__react 2s forwards ease;
          animation: animate__react 2s forwards ease;
}

@-webkit-keyframes animate__react {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}

@keyframes animate__react {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}

.skills .skills__container .skill__progressContainer .skill__animate__node {
  -webkit-animation: animate__node 2s forwards ease;
          animation: animate__node 2s forwards ease;
}

@-webkit-keyframes animate__node {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}

@keyframes animate__node {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}

.skills .skills__container .skill__progressContainer .skill__animate__cpp {
  -webkit-animation: animate__cpp 2s forwards ease;
          animation: animate__cpp 2s forwards ease;
}

@-webkit-keyframes animate__cpp {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}

@keyframes animate__cpp {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}

.skills .skills__container .skill__progressContainer .skill__animate__python {
  -webkit-animation: animate__python 2s forwards ease;
          animation: animate__python 2s forwards ease;
}

@-webkit-keyframes animate__python {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}

@keyframes animate__python {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}

.skills .skills__container .skill__progressContainer .skill__animate__golang {
  -webkit-animation: animate__golang 2s forwards ease;
          animation: animate__golang 2s forwards ease;
}

@-webkit-keyframes animate__golang {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}

@keyframes animate__golang {
  0% {
    width: 0;
  }
  100% {
    width: 85%;
  }
}

.skills .skills__container .skill__progressContainer .skill__animate__sql {
  -webkit-animation: animate__sql 2s forwards ease;
          animation: animate__sql 2s forwards ease;
}

@-webkit-keyframes animate__sql {
  0% {
    width: 0;
  }
  100% {
    width: 80%;
  }
}

@keyframes animate__sql {
  0% {
    width: 0;
  }
  100% {
    width: 80%;
  }
}

.skills .skills__container .skill__progressContainer .skill__animate__mongodb {
  -webkit-animation: animate__mongodb 2s forwards ease;
          animation: animate__mongodb 2s forwards ease;
}

@-webkit-keyframes animate__mongodb {
  0% {
    width: 0;
  }
  100% {
    width: 65%;
  }
}

@keyframes animate__mongodb {
  0% {
    width: 0;
  }
  100% {
    width: 65%;
  }
}

.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10rem;
}

.contact .contact__messageSent {
  background-color: green;
  padding: 10px 20px;
  border-radius: 15px;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.contact .contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 10px 0;
  width: 90%;
  max-width: 800px;
  background-color: #241263;
  border-radius: 20px;
}

.contact .contact__form .contact__input {
  color: grey;
  font-weight: bolder;
  font-size: 1.2rem;
  height: 50px;
  width: 80%;
  background-color: #1a0b50;
  border: none;
  border-radius: 20px;
  margin-top: 40px;
  padding: 20px;
}

@media (max-width: 600px) {
  .contact .contact__form .contact__input {
    margin-top: 20px;
  }
}

.contact .contact__form .contact__messageInput {
  margin-top: 80px;
  padding: 12px 20px;
  margin: 40px 0;
  height: 200px;
}

@media (max-width: 600px) {
  .contact .contact__form .contact__messageInput {
    margin-top: 20px;
  }
}

.contact .contact__form .contact__submitBtn {
  padding: 10px 25px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10vh;
  width: 100%;
}

footer .social__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 80%;
  max-width: 600px;
  color: #4f40f1;
  font-size: 2rem;
}

.blur1 {
  z-index: 0;
  height: 150px;
  width: 150px;
  right: 10px;
  border-radius: 100%;
  background-image: radial-gradient(circle, #6012d5, #5d11dc, #5810e3, #530feb, #4d0ff2, #4511e6, #3e12da, #3712ce, #3011ad, #28108d, #210e6e, #1a0b50);
}

.blur2 {
  z-index: 0;
  height: 250px;
  width: 250px;
  border-radius: 100%;
  background-image: radial-gradient(circle, #6012d5, #5d11dc, #5810e3, #530feb, #4d0ff2, #4511e6, #3e12da, #3712ce, #3011ad, #28108d, #210e6e, #1a0b50);
}

.bubble1 {
  z-index: 0;
  height: 200px;
  width: 200px;
  left: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
}

.bubble2 {
  z-index: 0;
  height: 100px;
  width: 100px;
  right: 0;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
  right: 5vw;
}

@media (min-width: 900px) {
  .bubble2 {
    top: 35vw;
    right: 10vw;
  }
}

.bubble3 {
  z-index: 0;
  height: 250px;
  width: 250px;
  right: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
  right: 5vw;
}

@media (min-width: 900px) {
  .bubble3 {
    top: 40vw;
    right: 20vw;
  }
}
/*# sourceMappingURL=main.css.map */