@import url("https://fonts.googleapis.com/css2?family=Righteous&family=Work+Sans:wght@100;200;300;400;600;800&display=swap");
.contenedor__logo {
  font-family: "Righteous";
  font-weight: bold;
  font-size: 30px;
}

.inicio__contenido--banner {
  font-size: 40px;
}
.inicio h1 {
  font-family: "Righteous";
  font-weight: bold;
}
.inicio h2 {
  font-size: 20px;
  font-family: normal;
  font-weight: bold;
}

.sobremi__titulo {
  font-size: 48px;
  font-family: "Righteous";
}
.sobremi__texto {
  font: 18px;
  text-align: justify;
}
.sobremi__texto span {
  font-weight: bold;
}
.sobremi__intereses h3 {
  font-size: 28px;
  font-family: "Righteous";
  margin-bottom: 25px;
}
.sobremi__datos .colu h3 {
  font-size: 28px;
  font-family: "Righteous";
  margin-bottom: 25px;
}
.sobremi__datos .colu ul {
  list-style: none;
}

.skills__h2 {
  font-size: 48px;
  font-family: "Righteous";
  text-align: center;
}
.skills__title {
  font-size: 28px;
  font-family: "Righteous";
  margin-bottom: 5%;
}

.portafolio .verproyecto a {
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  font-style: oblique;
}

.footer__name h5 {
  font-size: 25px;
  font-family: "Righteous";
  text-align: center;
  color: antiquewhite;
}
.footer__frase h6 {
  font-size: 15px;
  font-family: "Work Sans", sans-serif;
  text-align: center;
  color: antiquewhite;
}

.sobremi__boton {
  cursor: pointer;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 5px;
  width: fit-content;
  display: block;
  margin: 20px auto;
  padding: 10px 22px;
  font-size: 16px;
  color: #fff;
  position: relative;
  z-index: 10;
  transition: 0.5s;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.25);
}
.sobremi__boton .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 5px;
  background-color: #1cb698;
  z-index: -1;
  transition: 1s;
}
.sobremi__boton:hover .overlay {
  background-color: #1cb698;
  width: 100%;
  border-radius: 1px;
}

.boton--proyecto {
  cursor: pointer;
  background-color: #1cb698;
  border: 1px solid #fff;
  border-radius: 10px;
  width: fit-content;
  display: block;
  margin: 20px auto;
  padding: 5px 10px;
  font-size: 16px;
  color: #fff;
  position: relative;
  z-index: 10;
  transition: 0.5s;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.25);
}
.boton--proyecto a {
  outline: none;
  text-decoration: none;
  color: #fff;
}
.boton--proyecto a:hover {
  color: #c0fff2;
}

.footer {
  background: #252A2E;
  width: 100%;
  padding: 15px;
}
.footer__name h5 {
  color: #fff;
}
.footer__redes {
  text-align: center;
}

.contenedor {
  background: #1e2326;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
}
.contenedor__logo {
  color: #1cb698;
  text-decoration: none;
  outline: none;
}
.contenedor__nav ul {
  display: flex;
  list-style: none;
}
.contenedor__nav li a {
  text-align: none;
  color: #fff;
  margin: 0% 15px;
  padding: 3px;
  transition: 1s;
  text-decoration: none;
  outline: none;
}
.contenedor__nav--responsive {
  background-color: #1cb698;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  display: none;
}

.contenedor nav ul li a:hover {
  color: #1cb698;
}

@media screen and (max-width: 980px) {
  .contenedor__nav {
    display: none;
  }
  .contenedor nav.responsive {
    display: block;
    margin-right: 15px;
    position: absolute;
    right: 0px;
    left: end;
    top: 70px;
    background-color: #252a2e;
    width: 280px;
    height: 200px;
    border-radius: 10px;
    text-align: center;
  }
  .contenedor__nav--responsive {
    display: block;
  }
  .contenedor nav.responsive ul {
    display: block !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: solid 1px #fff;
    border-radius: 10px;
  }
  .contenedor nav.responsive ul li {
    border-bottom: 1px solid #fff;
    padding: 10px 0px;
    margin-right: 35px;
    margin-bottom: 5px;
  }
  .contenedor nav.responsive ul li a {
    outline: none;
    text-decoration: none;
    color: #fff;
  }
}
.inicio {
  background: linear-gradient(to top, rgba(30, 35, 38, 0.8), rgb(30, 35, 38)), url(/assets/img/code.png);
  background-size: 5%;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inicio__contenido--banner {
  padding: 20px;
  background-color: #1e2326;
  max-width: 450px;
  margin: 9px 0% 0% 0%;
  text-align: center;
  border-radius: 40px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.25);
}
@media (max-width: 768px) {
  .inicio__contenido--banner {
    margin: 100px 0% 0% 0%;
  }
}
.inicio__contenido--img {
  margin-top: 40px;
  display: block;
  width: 100%;
  margin: auto;
}
.inicio__contenido--img img {
  width: 60%;
  border: 2px solid #b2cfc9;
}
.inicio__contenido--redes a {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  width: 42px;
  height: 42px;
  transition: 0.5s;
}

.inicio__contenido--redes .inicio__contenido--banner a:hover {
  background-color: #b2cfc9;
}

.sobremi {
  background-color: #1e2326;
  color: #fff;
  padding: 50px 20px;
}
.sobremi__contenido {
  max-width: 1200px;
  margin: auto;
}
.sobremi .sobremi__containers {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 2%;
}
.sobremi__titulo {
  text-align: center;
  padding: 20px 0;
}
.sobremi__texto {
  width: 70%;
  line-height: 22px;
  margin-bottom: 20px;
  margin-left: 15%;
}
.sobremi__texto span {
  color: #1cb698;
}
.sobremi__link {
  text-decoration: none;
  outline: none;
  color: #fff;
}
.sobremi__datos {
  display: flex;
  width: 280px;
  height: 330px;
  padding: 2%;
  margin: 2% 2%;
  border: solid 1px #fff;
  border-radius: 20px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.25);
}
.sobremi__datos .colu {
  width: 100%;
}
.sobremi__datos .colu ul li {
  margin: 12px 0;
}
.sobremi__datos strong {
  display: inline-block;
  color: #1cb698;
  width: 130px;
}
.sobremi__intereses {
  display: flex;
  flex-direction: column;
  display: flex;
  width: 280px;
  height: 330px;
  padding: 2%;
  margin: 2% 2%;
  border: solid 1px #fff;
  border-radius: 20px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.25);
}
.sobremi__intereses .intcont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.sobremi__intereses .intcont .intereses__items {
  text-align: center;
  width: 100px;
  height: 100px;
  background-color: #252a2e;
  border-radius: 10px;
  margin: 0 0 15px 0;
  transition: 0.5s;
}
.sobremi__intereses .intcont .intereses__items i {
  font-size: 40px;
  margin-bottom: 10px;
}
.sobremi__intereses .intcont .intereses__items:hover {
  background-color: #1cb698;
}

.portafolio {
  background-color: #1e2326;
  color: #fff;
  padding: 50px 20px;
}
.portafolio .verproyecto a {
  outline: none;
  text-decoration: none;
  color: #fff;
}
.portafolio .verproyecto a:hover {
  background-color: #1cb698;
  border-radius: 1px;
  transition: 0.5s;
  padding: 10px;
  border-radius: 10px;
}

#mostrarPro1,
#mostrarPro2,
#mostrarPro3,
#mostrarPro4,
#mostrarPro5,
#mostrarPro6 {
  display: none;
}

.skills {
  background-color: #252A2E;
  color: #fff;
  padding: 30px 20px;
}
.skills__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 2%;
}
.skills__h2 {
  text-align: center;
  padding: 2%;
}
.skills__title {
  text-align: center;
  padding: 2%;
}
.skills__img {
  width: 50px;
  height: 50px;
  align-self: center;
}
.skills__code {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 1% 5% 3% 5%;
  text-align: center;
}
.skills .frontend {
  width: 280px;
  height: 300px;
  padding: 2%;
  margin: 2% 2%;
  border: solid 1px #fff;
  border-radius: 20px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.25);
}
.skills .frontend .frontcont {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.skills .datascience {
  width: 280px;
  height: 300px;
  padding: 2%;
  margin: 2% 2%;
  border: solid 1px #fff;
  border-radius: 20px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.25);
}
.skills .datascience .frontcont {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.skills .database {
  width: 280px;
  height: 300px;
  padding: 2%;
  margin: 2% 2%;
  border: solid 1px #fff;
  border-radius: 20px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.25);
}
.skills .database .frontcont {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.skills .tools {
  width: 280px;
  height: 300px;
  padding: 2%;
  margin: 2% 2%;
  border: solid 1px #fff;
  border-radius: 20px;
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.25);
}
.skills .tools .frontcont {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Work Sans";
}

html {
  scroll-behavior: smooth;
}

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