@keyframes cambiarColor {
  0% {
    background-color: #ff9999;
    color: black;
  }
  33% {
    background-color: #00b300;
    color: beige;
  }
  66% {
    background-color: #6666ff;
    color: white;
  }
  100% {
    background-color: #ff9999;
    color: black;
  }
}
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100vw;
  overflow-x: hidden;
  min-height: 100vh;
}
body header {
  z-index: 100;
}
body header .nav-link {
  transition: color 0.5s ease;
}
body header .navbar {
  min-height: 5vh;
}
body header .navbar svg {
  width: 40px;
  height: 40px;
}
body .main {
  padding: 0;
}
body .main .jumbotron {
  animation: cambiarColor 8s infinite;
  padding: 1%;
}
body .main .aboutme {
  display: flex;
  align-items: center;
}
body .main .studies .skills-div {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
body .main .studies .skills-div .skills {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  gap: 1%;
}
body .main .studies .skills-div .skills .skills-bar {
  background-color: green;
  width: 32%;
  height: 80%;
  border-radius: 5px;
}
body .main .worklife ul {
  text-align: left;
}
body .main .projects {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .main .projects .carousel {
  width: 100%;
}
body .main .projects .carousel .carousel-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0;
}
body .main .projects .carousel .carousel-inner .carousel-item {
  margin: 0;
}
body .main .projects .carousel .cards .card {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: inset 0 0 0 3px black;
  padding: 2%;
  width: 30vw;
}
body .main .projects .carousel .cards .card p {
  text-align: center;
}
body .main .projects .carousel .cards .card svg {
  max-width: 30vw;
  width: 60%;
  max-height: 15vh;
}
body .main .projects .carousel .cards .card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
body .main .projects .carousel .cards .card .card-body .btn {
  width: 100%;
}
body .main .projects .carousel .cards .card .card-body a {
  transition: background-color 0.5s ease;
}
body .main .projects .carousel .cards .card .card-body a svg {
  width: 25px;
}
body .main .projects .carousel .cards .card .card-body a:hover {
  background-color: white;
}
body .main form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
body .main form .progress {
  margin: 5px 0;
}
body footer {
  font-size: 0.8em;
  border-top: 2px solid black;
}
body footer .footer1 {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
body footer .footer2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
body footer .footer2 svg {
  width: 3vw;
}
body footer .footer2 .license {
  font-size: 0.75em;
}
body footer .footer2 a:visited {
  color: white;
}

h1 {
  padding-bottom: 2%;
}

.sticky {
  position: sticky;
  top: 0;
}

.aboutme img {
  width: 20%;
}

.borde {
  border-left: 1px solid black;
}

a:hover {
  color: #0000FF;
}
a:visited {
  color: #aaaaff;
}

.row {
  text-align: center;
}
.row p {
  text-align: justify;
}

.filaColor:nth-child(even) {
  background-color: #DADADA;
}
.filaColor:nth-child(odd) {
  background-color: #aaaaff;
}

.progress {
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .aboutme img {
    width: 30%;
  }
  .main .projects .carousel .cards .card {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  body {
    font-size: 14px;
  }
  body .borde {
    border: 0;
  }
  body .navbar svg {
    width: 12vw;
    height: 10vw;
  }
  footer {
    font-size: 1em;
  }
  footer section {
    display: flex;
  }
  footer section .footer1 {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .skills-div {
    flex-direction: column;
    gap: 0;
  }
  .skills-div .skills {
    width: 50%;
  }
  body .main .projects .carousel .cards {
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 50vh;
  }
  body .main .projects .carousel .cards .card {
    width: 80%;
    padding: 4%;
  }
}
@media screen and (max-width: 575px) {
  body {
    font-size: 12px;
  }
  body footer {
    font-size: 1em;
  }
  body footer section .footer2 {
    display: flex;
    gap: 7px;
    flex-direction: column;
    align-items: center;
  }
  body footer section .footer2 svg {
    width: 20%;
  }
}/*# sourceMappingURL=styles.css.map */