body {
  display: block;
  background-color: yellow;
  background-image: url(../img/Palacio-de-Justicia.webp);
  background-repeat: no-repeat;
  background-size: cover;
  backdrop-filter: grayscale(100%);
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0;
  font-family: montserrat, sans-serif;
  animation: cambiar 90s ease infinite;
}

header {
  display: flex;
  background-color: rgb(31, 31, 31);
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  top: 0;
  z-index: 1;
  margin-bottom: 1em;
}

.Texto-Portada {
  display: flex;
  background-color: rgb(31, 31, 31);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  top: 0;
  z-index: 1;
}

.Titulo {
  font-family: serif;
}

.Persona-Portada {
  display: flex;
}

.Persona {
  width: 5em;
  bottom: 0;
}

.Redes {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.Icono {
  font-size: 2em;
}

.Iconos {
  color: aliceblue;
  font-size: 3em;
  margin: 0.5em;
  top: 0;
}
.Iconos:hover {
  transform: translateY(-0.1em);
  color: #3ebaef;
}

.Logo {
  width: 15em;
}

h1 {
  color: aliceblue;
  font-size: 3em;
}

h2 {
  color: aliceblue;
  font-size: 2.5em;
  margin: 0;
}

h3 {
  color: aliceblue;
  font-size: 2em;
}

p {
  font-size: 1.5em;
}

a {
  text-decoration: none;
  color: aliceblue;
}

.sobre-mi {
  color: aliceblue;
}

.Persona {
  width: 50%;
  margin-top: auto;
  filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.8));
}

.Texto {
  font-size: auto;
}

.Contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.Titulares {
  background-color: rgb(31, 31, 31);
  width: 100%;
  border-bottom: 10px #3ebaef solid;
}

.Titulares-Areas {
  font-size: 1.3em;
}

.Texto-Areas {
  font-size: 1em;
}

.Apartado {
  display: flex;
  width: 85%;
  justify-content: center;
  align-items: center;
}

.Areas {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.Media, .Media-2 {
  display: flex;
  width: 85%;
  color: aliceblue;
  font-size: 3em;
  justify-content: center;
  align-items: center;
  text-shadow: 10px 5px 5px black;
}

.Contenido {
  width: 10em;
  padding: 0.5em;
  background-color: rgb(31, 31, 31);
  margin: 0.5em;
  border-radius: 25px;
  border-bottom: 5px solid #3ebaef;
  color: aliceblue;
}

.Contenido-Largo {
  padding: 1em;
  background-color: rgb(31, 31, 31);
  margin: 0.5em;
  border-radius: 25px;
  color: aliceblue;
}

.Contacto {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
}

form {
  padding: 1em;
  min-width: 50%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
form input, form textarea {
  padding: 0.8em;
  border-radius: 8px;
  border: none;
}
form button {
  font-size: 2em;
  padding: 1em;
  background: #3ebaef;
  font-weight: bold;
  cursor: pointer;
}
form button:hover {
  background: #3e55ef;
}

.Candidatura {
  background: linear-gradient(#F98C01, #FF0700);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.Candidatura:hover {
  background: linear-gradient(#f4bc73, #ed7a76);
}

footer {
  padding: 1em;
  color: aliceblue;
  display: flex;
  background-color: rgb(31, 31, 31);
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.Mapa {
  margin: 1em;
}

.carousel {
  margin: 2em;
  color: aliceblue;
}

.carousel-cell {
  display: flex;
  width: 100%;
  height: 160px;
  margin-right: 10px;
  background-color: rgb(31, 31, 31);
  justify-content: center;
  align-items: center;
  font-size: 5em;
  border-radius: 15px;
}

/* position dots in carousel */
.flickity-page-dots {
  bottom: 0px;
}

/* white circles */
.flickity-page-dots .dot {
  width: 12px;
  height: 12px;
  opacity: 1;
  background: transparent;
  border: 2px solid white;
}

/* fill-in selected dot */
.flickity-page-dots .dot.is-selected {
  background: white;
}

@keyframes cambiar {
  0% {
    background-position: 0% 100%;
  }
  50% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 0% 100%;
  }
}
@media (max-width: 910px) {
  .Media {
    flex-wrap: wrap;
    font-size: 1.8em;
  }
  .Media-2 {
    flex-wrap: wrap-reverse;
    font-size: 1.8em;
  }
}
@media (max-width: 760px) {
  p {
    font-size: 1em;
  }
  .Contenido {
    height: 8em;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
  }
  .Texto-Areas {
    display: none;
  }
  .Titulo {
    margin: 0.5em 0.5em;
  }
  h3 {
    margin: 0.5em 0.5em;
  }
  .Apartado {
    flex-direction: column;
  }
  .Iconos {
    font-size: 2em;
  }
  .Persona {
    width: 80%;
  }
  form {
    min-width: 80%;
  }
  .carousel-cell {
    font-size: 2em;
  }
}
@media (max-width: 620px) {
  .Media, .Media-2 {
    font-size: 1.5em;
  }
}/*# sourceMappingURL=style.css.map */