@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@200&display=swap');

/* Primero voy a configurar las sections */
section{
    height: 100vh;
    width: 99,5vw;
    display: flex;
	justify-content: center;
}

/* Configuración section 1 */
.section1{
    background-color: #A9DFBF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Configuración section 2 */
.section2{
    background-color: #7DCEA0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Configuración section 3 */
.section3{
    background-color: #A2D9CE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Configuración section 4 */
.section4{
    background-color: #AED6F1;
    height: 100vh;
}


/* Ahora voy a configurar el menú (basado en el que hice para el trabajo de gustos) */
.menu{
    list-style: none;
    padding: 0;
    background: white;
    margin: auto;
    width: 100vw;
    font-family: 'Montserrat', sans-serif;
}

.menu li a {
    text-decoration: none;
    color: black;
    padding: 20px;
    display: block;
}

.menu li {
    display: inline-block;
    text-align: center;
}

.menu li a:hover{
    background: rgba(129, 134, 136, 0.199);
}

/* Configurar botón para ir arriba */
.subir{
    position: fixed;
    bottom: 0;
    right: 0;
    margin-right: 1vw;
    margin-bottom: 1vh;
    color: black;
}

/* Configuración del interior de section 1 */

h1{
    text-align: center;
    color: white;
    font-family: 'Cinzel', serif;
    font-size: 6vmin;
    letter-spacing: 3vw;
    margin-bottom: 0;
}

.presento{
    font-family: 'Montserrat', sans-serif;
    font-size: 3vmin;
    color: black;
    line-height: 6vh;
    text-align: center;
    width: 95vw;
    margin-top: 0,5vmin;
}

.fotoyo{
    width: 40vw;
    height: auto;
    align-self: center;
    justify-content: center;
    border-radius: 1vw;
    padding: 0.8vmin;
    border: 0.5vmin solid white;
}

/* Ahora voy a configurar los íconos de la sección SOBRE MI */
.titulosobremi{
    justify-content: center;
    align-items: flex-start;
}

.logosul{
    display: flex;
}

.itemsinfo{
    list-style: none;
    justify-content: center;
    flex-direction: row;
    align-items: flex-end;
}

.itemsinfo a{
    padding: 10px 20px;
    font-size: 20vmin;
    color: white;
    transition: all .25s;
}

.parrsobremi{
    justify-content: center;
    align-items: center;
    font-family: 'Be Vietnam Pro', sans-serif;
}

/* Ahora voy a configurar la section "De cara al futuro" */
.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
  }
 /* 4 columnas iguales, una al lado de la otra */
  .column {
    flex: 25%;
    max-width: 21%;
    padding: 0 4px;
  }
  
  .column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
  }

  /* Que sea responsivo */
  @media screen and (max-width: 800px) {
    .column {
      flex: 50%;
      max-width: 50%;
    }
  }

  @media screen and (max-width: 600px) {
    .column {
      flex: 100%;
      max-width: 100%;
    }
  }

  .collagefuturo {
      padding-left: 1vmin;
  }

  /* Aca configuro el footer */
.outer-footer{
    padding: 2vmin;
    text-align: center;
    color: rgb(41, 40, 40);
    font-size: 0,5vmin;
    background-color: #AED6F1;
}

/* Ahora voy a configurar la section de Paso por el Illia */
body {
	background: #444;
	margin: 0;
	font-family: monospace;
}

h1 {
	color: #fff;
	text-align: center;
}

/*Configuro la galeria que se ve en un principio*/

.galeria {
	width: 90%;
	margin: auto;
	list-style: none;
	padding: 2vmin;
	box-sizing: border-box;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}

.galeria li {
	margin: 1,5vmin;
}

.galeria li a:hover{
    background-color: #00632b;
}

.galeria img {
	width: 21vw;
	height: auto;
}

/*Configuro lo que se ve cuando se apriete cada una de las fotos*/

.modal {
	display: none;
}

.modal:target {
	
	display: block;
	position: fixed;
	background: rgba(0,0,0,0.8);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modal h3 {
	color: #fff;
	font-size: 5vmin;
	text-align: center;
	margin: 3vmin 0;
}

.imagen {
	width: 100%;
	height: 50%;
	
	display: flex;
	justify-content: center;
	align-items: center;
}

.imagen a {
	color: #fff;
	font-size: 7vmin;
	text-decoration: none;
	margin: 0 2vmin;
}

.imagen a:nth-child(2) {
	margin: 0;
	height: 100%;
	flex-shrink: 2;
}

.imagen img {
	width: 500px;
	height: 100%;
	max-width: 100%;
	border: 7px solid #fff;
	box-sizing: border-box;
}

/* COnfiguro el boton de cerrar para volver a la pantalla incial */
.cerrar {
	display: block;
	background: #fff;
	width: 25px;
	height: 25px;
	margin: 15px auto;
	text-align: center;
	text-decoration: none;
	font-size: 25px;
	color: #000;
	padding: 5px;
	border-radius: 50%;
	line-height: 25px;
}