@import url("https://use.typekit.net/nls0zjh.css");
* {
  margin: 0;
  padding: 0;
}

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

body .descripcion-1 {
  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;
}
body .descripcion-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;
}

header {
  width: 100%;
  height: 24%;
  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;
  }
}
.intro {
  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;
}

.comarca {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.comarca img {
  width: 600px;
  height: 300px;
  margin: 5px;
  padding: 5px;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
}
.comarca img:hover {
  transform: scale(1.1);
}

.dante {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.dante img {
  width: 600px;
  height: 300px;
  margin: 5px;
  padding: 5px;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
}
.dante img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .comarca {
    flex-direction: column;
    align-items: center;
  }
  .comarca img {
    width: 350px;
    height: 210px;
  }
  .comarca img:hover {
    transform: scale(1.1);
  }
  .dante {
    flex-direction: column;
    align-items: center;
  }
  .dante img {
    width: 350px;
    height: 210px;
  }
  .dante img:hover {
    transform: scale(1.1);
  }
}
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=trabajo.css.map */