@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#navbarNav {
  flex-direction: row-reverse;
}

.hero {
  background-image: url(../img/computer-g344680259_1920.png);
  height: 100vh;
}

.title {
  margin: 4rem;
  display: flex;
  justify-content: center;
}
.title h3 {
  font-size: 2rem;
  color: white;
  font-family: "Figtree", sans-serif;
}
.title h3 span {
  background-color: #212121;
}

.container {
  display: flex;
  justify-content: center;
}
.container .sobre-mi h2 {
  font-family: "Figtree", sans-serif;
  font-size: 2rem;
  text-align: center;
  color: #fff;
}
.container .sobre-mi h2 span {
  background-color: #212121;
}
.container .sobre-mi-inner {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  grid-template-areas: "foto text";
}
.container .sobre-mi-inner img {
  grid-area: foto;
  max-width: 100%;
}
.container .sobre-mi-inner p {
  font-family: "Open Sans", sans-serif;
  margin: 2rem;
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  grid-area: text;
}

.title {
  margin: 4rem;
  display: flex;
  justify-content: center;
}
.title h3 {
  font-size: 2rem;
  color: white;
  font-family: "Figtree", sans-serif;
}
.title h3 span {
  background-color: #212121;
}

.container {
  display: flex;
  justify-content: center;
}
.container .skill h2 {
  color: #fff;
  font-family: "Figtree", sans-serif;
  font-size: 2rem;
  text-align: center;
}
.container .skill h2 span {
  background-color: #212121;
}
.container .skill-inner {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  grid-template-areas: "foto texto";
}
.container .skill-inner img {
  padding: 1rem;
  grid-area: foto;
  max-width: 100%;
}
.container .skill-inner p {
  font-family: "Open Sans", sans-serif;
  margin: 2rem;
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  grid: texto;
}
.container .gallery {
  margin: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 150px;
  grid-gap: 10px;
}
.container .gallery .gallery-item .item-img {
  display: block;
  margin: auto;
  max-width: 150px;
  width: 100%;
  height: 100%;
}

.proyecto {
  margin-top: 5rem;
}
.proyecto h2 {
  color: #fff;
  font-family: "Figtree", sans-serif;
  font-size: 2rem;
  text-align: center;
}
.proyecto h2 span {
  background-color: #212121;
}
.proyecto .proyecto-inner {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  grid-template-areas: "Foto Texto" "Foto Boton";
}
.proyecto .proyecto-inner img {
  grid-area: Foto;
  max-width: 100%;
}
.proyecto .proyecto-inner p {
  font-family: "Open Sans", sans-serif;
  margin: 2rem;
  margin-top: 3rem;
  grid-area: Texto;
}
.proyecto .proyecto-inner button {
  grid-area: Boton;
  margin-left: 15rem;
  max-width: 15%;
  max-height: 80%;
  background-color: #212121;
  border-color: #fff;
}
.proyecto .proyecto-inner button a {
  color: #fff;
  text-decoration: none;
}

.espacio {
  height: 100px;
}

@media screen and (max-width: 1200px) {
  h2 {
    margin-top: 5rem;
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: 2rem;
    text-align: center;
  }
  h2 span {
    background-color: #212121;
  }
  .proyecto-inner {
    display: grid;
    grid-template-columns: 0.3fr 1fr;
    grid-template-areas: "Foto Texto" "Foto Boton";
  }
  .proyecto-inner img {
    grid-area: Foto;
    max-width: 100%;
  }
  .proyecto-inner p {
    font-family: "Open Sans", sans-serif;
    margin: 2rem;
    margin-top: 3rem;
    grid-area: Texto;
  }
  .proyecto-inner button {
    grid-area: Boton;
    margin-left: 15rem;
    max-width: 15%;
    max-height: 80%;
    background-color: #212121;
  }
  .proyecto-inner button a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-family: "Figtree", sans-serif;
  }
}
@media screen and (max-width: 975px) {
  .container .proyecto .proyecto-inner {
    display: grid;
    grid-template-columns: 0.35fr 1fr;
    grid-template-areas: "foto texto" "foto boton";
  }
  .container .proyecto img {
    grid-area: foto;
    margin-top: 1rem;
    height: 15rem;
    width: 15rem;
  }
  .container .proyecto p {
    grid-area: texto;
  }
  .container .proyecto button {
    grid-area: boton;
    margin-right: 10rem;
    height: 3rem;
    max-width: 7rem;
  }
  .container .proyecto button a {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .container .proyecto .proyecto-inner {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-areas: "foto texto" "boton boton";
  }
  .container .proyecto img {
    grid-area: foto;
    margin-top: 1rem;
    height: 15rem;
    width: 15rem;
    overflow: hidden;
  }
  .container .proyecto p {
    grid-area: texto;
  }
  .container .proyecto button {
    grid-area: boton;
  }
  .container .proyecto button a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 384px) {
  .container .proyecto h2 span {
    font-size: 1.5rem;
  }
  .container .proyecto .proyecto-inner {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    grid-template-areas: "foto texto" "boton boton";
  }
  .container .proyecto .proyecto-inner img {
    grid-area: foto;
    height: 10rem;
    width: 10rem;
  }
  .container .proyecto .proyecto-inner p {
    grid-area: texto;
    margin-top: 1rem;
    font-size: 0.9rem;
  }
  .container .proyecto .proyecto-inner button {
    height: 4rem;
    width: 5rem;
    grid-area: boton;
  }
}
@media screen and (max-width: 985px) {
  .sobre-mi .sobre-mi-inner p {
    margin-top: 1rem;
  }
  .skill .skill-inner img {
    height: 12rem;
    max-width: 100%;
  }
  .skill .skill-inner p {
    margin-top: 1rem;
  }
  .skill .gallery .gallery-item {
    margin: 0.5rem;
  }
  .skill .gallery .gallery-item .item-img {
    padding: 1rem;
  }
}
@media screen and (max-width: 775px) {
  .sobre-mi .sobre-mi-inner {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-areas: "foto text";
  }
  .sobre-mi .sobre-mi-inner img {
    height: 13rem;
    width: 15rem;
  }
  .skill .skill-inner {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-areas: "foto texto";
  }
  .skill .skill-inner img {
    margin-top: 1rem;
    height: 15rem;
    width: 15rem;
  }
  .skill .gallery .item-img {
    display: block;
    margin: auto;
    max-width: 150px;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .title h3 span {
    font-size: 1.5rem;
  }
  .sobre-mi h2 span {
    font-size: 1.5rem;
  }
  .sobre-mi .sobre-mi-inner {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-areas: "foto text";
  }
  .sobre-mi .sobre-mi-inner img {
    height: 13rem;
    width: 15rem;
  }
  .sobre-mi .sobre-mi-inner p {
    margin-top: 1rem;
    font-size: 1rem;
  }
  .skill h2 span {
    font-size: 1.5rem;
  }
  .skill .skill-inner {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-areas: "foto texto";
  }
  .skill .skill-inner img {
    margin-top: 1rem;
    height: 15rem;
    width: 15rem;
  }
  .skill .skill-inner p {
    margin-top: 1rem;
    font-size: 1rem;
  }
  .skill .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .skill .gallery .item-img {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 120px;
    height: 100%;
  }
}
@media screen and (max-width: 384px) {
  .title h3 span {
    font-size: 1.5rem;
  }
  .container .sobre-mi h2 span {
    font-size: 1.5rem;
  }
  .container .sobre-mi-inner {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    grid-template-areas: "foto text";
  }
  .container .sobre-mi-inner p {
    margin-top: 1rem;
    font-size: 0.9rem;
  }
  .container .skill h2 span {
    font-size: 1.5rem;
  }
  .container .skill .skill-inner {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    grid-template-areas: "foto texto";
  }
  .container .skill .skill-inner p {
    margin-top: 1rem;
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=estilo.css.map */