* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Asap', sans-serif;
  background: color #FCFEFF;
}

h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  margin-top: 20px;
  color: #0C266B;
}

h2 {
  font-family: 'Asap', sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 15px;
}

h3 {
  font-family: 'Asap', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 15px;
  color: #0C266B;
}

h4 {
  font-family: 'Asap', sans-serif;
  font-size: 0.7rem;
  line-height: 2rem;
}

a {
  font-family: 'Asap', sans-serif;
  color: aliceblue;
  font-weight: 0;
  font-size: 1rem;
  line-height: 2rem;
}

.my-header {
  margin-top: 20px;

}

.text_banner {
  color: aliceblue;
}

.img-portada {
  width: 100%;
  object-fit: contain;
}

.contenedor-portada h1 {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 1px black;
}

.espacio {
  margin-top: 40px;
  margin-bottom: 40px;
}

.margen {
  margin-left: 30px;
  margin-right: 30px;
}

.centro {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.boton {
  background-color: rgb(6, 3, 48);
  color: rgb(6, 3, 48);
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
}

/* Degradado para el botón */
.boton-gradient {
  background-image: linear-gradient(to bottom, #D2DA17, #3BAC80);
}

.boton:hover {
  background-color: rgb(20, 10, 154);
  border-style: solid;
  border-width: 2px;
  border-color: rgb(20, 10, 154);
}


.articulo {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.articulo-img {
  display: block;
  align-items: end;
  margin-right: 0px;
  margin-inline-end: 20%;
  writing-mode: horizontal-tb;
  direction: rtl;
  margin-bottom: 20px;
  width: 100%;
  height: auto;
  max-width: 500px;
}

/* Estilo base para la imagen (visible por defecto) */
.imagen {
  display: block;

}

/* Media query para pantallas pequeñas (menos de 768px) */
@media (max-width: 700px) {
  .articulo-img {
    display: none;
    /* Oculta la imagen en pantallas pequeñas */
  }
}

.articulo-text {
  display: flex;
  align-items: center;
}

input {
  background-color: #fbfbfb;
  height: 40px;
  border-radius: 5px;
  border-style: solid;
  border-width: 3px;
  border-color: #00B1CA;
  margin-top: 10px;
  padding-left: 10px;
  margin-bottom: 20px;
}

textarea {
  background-color: #fbfbfb;
  height: 150px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #00B1CA;
  margin-top: 10px;
  padding-left: 10px;
  margin-bottom: 20px;
  padding-top: 15px;
}

.bajada {
  background-color: rgb(5, 3, 38);
  color: aliceblue;
  top: 20px;
  width: 100%;
  height: auto;
}

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