@import url("https://use.typekit.net/nls0zjh.css");
header {
  width: 100%;
  height: 20%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.445);
}
header img {
  width: 200px;
  height: 100px;
  margin: 20px;
}
header nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex: 1;
}
header nav a {
  text-decoration: none;
  font-size: 25px;
  font-family: "tilt-neon", sans-serif;
  margin: 0 15px;
  padding: 10px 20px;
}
header input[type=checkbox] {
  display: none;
}
header label {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
header label div {
  width: 25px;
  height: 3px;
  background-color: rgb(0, 0, 0);
  margin: -6px 0;
}

@media (max-width: 768px) {
  header nav {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 90px;
    left: 0;
    background-color: rgba(255, 255, 255, 0.768627451);
  }
  header nav a {
    padding: 15px;
  }
  header input[type=checkbox]:checked + label + nav {
    display: flex;
  }
  header label {
    display: flex;
    margin-bottom: 30px;
    margin-right: 20px;
  }
}
* {
  margin: 0;
  padding: 0;
}

body {
  background-image: url(fondo1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#SobreMi {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#SobreMi .info {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  margin: 20px;
}
#SobreMi .info img {
  width: 170px;
  height: 170px;
  margin-left: 20px;
  margin-right: 20px;
  padding: 20px;
}
#SobreMi .info .saludo {
  font-size: 30px;
  font-family: "tilt-neon", sans-serif;
  text-align: center;
}
#SobreMi .info-2 {
  font-family: "tilt-neon", sans-serif;
  font-size: 22px;
  text-align: justify;
  margin: 10px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.445);
  border-radius: 20px;
}
#SobreMi article {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  background-color: rgba(255, 255, 255, 0.445);
  border-radius: 20px;
  padding: 20px;
  margin: 20px;
}
#SobreMi article div {
  display: flex;
  flex-direction: column;
  font-size: 20px;
}
#SobreMi article div h3 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
  font-family: "tilt-neon", sans-serif;
}
#SobreMi article div ul {
  text-align: center;
  list-style-type: none;
}
#SobreMi article div ul li {
  margin-bottom: 10px;
  padding: 6px;
  background-color: white;
  border-radius: 40px;
  font-family: "tilt-neon", sans-serif;
  font-size: 17px;
}

.Trabajos {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.Trabajos img {
  width: 400px;
  height: 250px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}
.Trabajos img:hover {
  transform: scale(1.1);
}
.Trabajos p {
  font-family: "tilt-neon", sans-serif;
  margin-bottom: 10px;
  padding: 6px;
  background-color: white;
  border-radius: 40px;
  font-size: 20px;
}

@media (max-width: 768px) {
  #SobreMi .info {
    flex-direction: column;
  }
  #SobreMi article {
    flex-direction: column;
  }
  .Trabajos {
    flex-direction: column;
  }
  .Trabajos img {
    margin: 10px;
    width: 320px;
    height: 210px;
  }
  .Trabajos img:hover {
    transform: scale(1.1);
  }
}
@media (max-width: 1100px) {
  .Trabajos {
    flex-direction: column;
  }
  .Trabajos img {
    margin: 10px;
  }
}
footer {
  width: 100%;
  height: 15%;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.37);
}
footer img {
  width: 40px;
  height: 40px;
  margin: 10px;
}
footer p {
  font-size: 18px;
  font-family: "tilt-neon", sans-serif;
}

@media (max-width: 768px) {
  footer {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}/*# sourceMappingURL=estilo.css.map */