/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  /* background: linear-gradient(0deg, steelblue, dodgerblue, steelblue, dodgerblue, steelblue); */
  background-color: steelblue;
  font-family: sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  
  /* Asegura que el fondo cubra toda la pantalla y no se repita */
  background-attachment: fixed;
  min-height: 100vh;
}

.contenedor-cabecera {
  display: flex;         /* Activa el modo horizontal (Flexbox) */
  gap: 20px;             /* Añade separación o espacio entre los divs */
  /*justify-content: flex-star; /* Alinea los divs al inicio (puedes usar 'center' o 'space-between') */
}

.titulo {
  flex: 2;
}

.finger {
  flex: 1;
}

.izquierda {
  flex: 1;
}

.centro {
  flex: 3;
}

.derecha {
  flex: 1;
}

h1 {
  text-align: center;
}

h2 {
  color: #F54927;
}


.contenedor-horizontal {
  display: flex;         /* Activa el modo horizontal (Flexbox) */
  gap: 20px;             /* Añade separación o espacio entre los divs */
  justify-content: flex-start; /* Alinea los divs al inicio (puedes usar 'center' o 'space-between') */
  
}

/* Opcional: Solo para que tus divs hijos tengan forma de caja */
.caja {
  background-color: dimgray;
  color: azure;
  padding: 10px;
  border: 1px solid;
  border-color: black;
  padding: 10px;
  border-radius: 8px;

  margin-bottom: 20px;
}

