

/* Parámetros iniciales (para toda la página igual)*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cualidades del fondo DE TODO */
.general{
    background-color: black;
    width: 100vw;
    height: 100%;
    display:flex;
    flex-direction: row;
}


/* Determinar secciones fijas (cabecera y pie de página) */
.cabecera{
    /* alto-ancho */
    width: 100vw;
    height: 10vh;
    background-color: red;

    /* FIJAR SECCIÓN */
    position: fixed;
    top: 0;
}

/* Cómo se organizara el contenido (los botones) dentro de la cabecera */
.botonera{
  /* alto-ancho */
  width: 88%;
  height: 10vh;
  margin:auto;

   /* Organizador de contenido */
   display:flex;
   flex-direction: row;
   justify-content: space-around;
   align-items: center; 
  }
  /* El formato, css, de los botones se encuentra en el apartado "botones.css" */

  /* Otra sección fija */
.pie_pagina{
    /* alto-ancho */
    width: 100vw;
    height: 6vh;

    /* Estética */
    background-color: rgb(12, 142, 228);

    /* FIJAR SECCIÓN */
    position: fixed;
    bottom: 0;
}


/* Formato al contenido */
.principal{
    /* alto-ancho */
    height: 80%;
    width: 95%; /* No 100% debido a la barra de desplazamiento, y un poco menos aún para que quede espaciado*/
    margin: auto; /* para centrar */
    display:flex;
    flex-direction: column; /* Para que las secciones vayan una bajo la otra */

    /* Márgenes (para la botonera-pie) */
    margin-top: 10vh; /* Especio de botonera, arriba */
    margin-bottom: 6vh; /* Espacio de pie, abajo */
}



/* CONTENIDO DE SECCIONES */

/* Determinar tamaño y color para c/u sección */

.presentacion{
    width: 100%; /* Siempre será 100% */
    min-height: 84vh; /* Puesto en "vh" en vez de "%" debido a que se traba con más facilidad con el "%" */
    /* "min-height" = altura mínima */
    background-color: rgb(0, 0, 0); /* Colores momentáneos, para ver cómo se verá cada sección en el espacio */

    /* Para centrar contenido */
    display: flex;
    justify-content: center;
    align-items: center;
    /* No se aclara dirección ya que ambos son center - center ; si hubiésemos querido que vaya más arriba o abajo, tendríamos que aclarar "column" y así */
}
/* Imagen */
.Arrancamo{
    width: 100%;
}

/* Tamaños y colores momentáneos de cada sección */
.conociendome{
    width: 100%;
    min-height: 175vh; 
    background-color: white;
}

/* Subtítulo CONOCIÉNDOME */

.titulo_secc-conociendome{
    width: 100%;
    height: 8%;
    color:rgb(255, 255, 255);
    text-align: center;
    padding-top: 1%; 
    background-color: rgb(0, 0, 0);
    margin-top: 1.5%;
    padding-top: 1%;
    padding-bottom: 2%;
}

/* Especificidades CONOCIÉNDOME */

.espacio_preguntas{
    background-color: black; 

    /* Agrupación de tarjetas */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* Para cada tarjeta */

.tarjeta{
    width: 20%;
    height: 35vh;
    margin:1%;
    border-radius: 5%;
    border: 3px solid;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: white; 
    align-content: center;

    /* Título centrado */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pregunta{
    background-color: transparent;
    text-align: center;
    color:rgb(200, 15, 15);
    font-size: 4vmin;
    font-style: oblique;  
    line-height: 150%;
}

.respuesta{
    background-color: transparent;
    font-weight: 900;
    color: rgb(10, 103, 165); 
    font-size: 3vmin; 
    text-align: center;
}



/* Otra sección */
.paso_illia{
    width: 100%;
    min-height: 1680%;
    background-color: transparent; 
}

.titulo_secc-illia{
    height: 1%;
    color:rgb(0, 0, 0);
    background-color: white;
    text-align: center;
    padding-top: 1%; 
    padding-bottom: 2%;
}
/* Imagen */
.recopilation{
    width: 100%;
}



/* Otra sección */
.futuro{
    width: 100%;
    min-height: 1545%;
    background-color: rgb(255, 255, 255);
}

.titulo_secc-futuro{
    height: 1.5%;
    color:rgb(0, 0, 0);
    background-color: rgb(255, 0, 0);
    text-align: center; 
    padding-bottom: 2%;
    padding-top: 2%;
    border: 5px solid; 
    border-color: rgb(0, 195, 255);
}
/* Imagen */
.tutti{
    width: 100%;
}



/* Última sección */
.contactos{
    width: 100%;
    min-height: 150%;
    background-color: rgb(255, 255, 255);
}
/* Imagen */
.final{
    width: 100%;
}