/* Resetear márgenes y padding */
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

body{
  background-color: #080d64; /* Color de fondo */
}
/* Estilos generales del contenedor */
.container {
  max-width: 100%;
  height: auto;
  position: relative;
  background-color: #080d64; /* Color de fondo */
}

/* Estilos para los divs con el contenido */
.item {
  width: 100%; /* O ajusta este valor según tus necesidades */
  padding: 20px; /* Espaciado interior */
  /*background-color: #080d64; /* Color de fondo */
}

/* Estilos para los títulos */
.item h1 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  text-align: center; /* Alineación central del texto */
  font-size: 30pt;
  color: #3fe8ff; /* Color de texto */
  margin-bottom: 30px;
}
.item h2 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 70pt;
  color: #ffffff; /* Color de texto */
  margin-bottom: 10px;
  text-align: center; /* Alineación central del texto */
}

/* Estilos para los subtítulos */
.item h3 {
  font-family: "Poppins", sans-serif;
  font-weight: medium;
  font-size: 30pt;
  color: #ffffff; /* Color de texto */
  margin-bottom: 10px;
  text-align: center; /* Alineación central del texto */
}

/* Estilos para el texto */
.item p {
  font-family: "Poppins", sans-serif;
  font-weight: regular;
  font-size: 20pt;
  color: #ffffff; /* Color de texto */
  margin-bottom: 20px;
  text-align: center; /* Alineación central del texto */
}

/* Estilos para las imágenes */
.item img {
  max-width: 100%; /* Ajusta el ancho de la imagen al contenedor */
  height: auto;
  display:block;
  margin:auto;
}

/* unvisited link */
a:link {
  color: white;
}

/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: gray;
}

/* selected link */
a:active {
  color: white;
}