* {
  margin: 0;
}

/* body */
body {
  background-image: url("../imagenes/cielo.jpg");
  width: 100%;
  height: 100vh;
  background-attachment: fixed;
}

/* header */

.header {
  background-color: white;
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  z-index: 3;
}

.header ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: white;
}

.header li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid white;
  text-decoration: none;
}

.header li a:hover,
.header .menu-btn:hover {
  background-color: white;
}

.header .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height 0.2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  background: black;
  display: block;
  height: 2px;
  position: relative;
  transition: background 0.2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: black;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

@media (min-width: 48em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}
/* FIN HEADER */

/* LETRA TITULOS */
@import url("https://fonts.googleapis.com/css2?family=Reggae+One&display=swap");

/* titulo h1 */
h1 {
  font-family: "Reggae One", cursive;
  font-size: 250%;
  text-align: center;
  background-color: palegoldenrod;
  border-color: rgb(245, 138, 38);
  border-width: 10px;
  border-style: outset;
  margin: 2%;
  padding: 10px;
}
/* titulos h2 */

h2 {
  font-family: "Reggae One", cursive;
  font-size: 200%;
  background-color: palegoldenrod;
  border-color: rgb(245, 138, 38);
  border-width: 10px;
  border-style: outset;
  margin-left: 10%;
  margin-right: 10%;
  text-align: center;
}

/* LETRA PARRAFOS */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital@1&display=swap");
p {
  font-family: "Libre Baskerville", serif;
  color: black;
  font-style: italic;
  font-weight: bolder;
  font-size: 120%;
}



/* secciones */
.seccion1 {
  background-color: transparent;
  width: 100%;
  height: 90vh;
}

.seccion2 {
  background-color: transparent;
  width: 100%;
  height: 110vh;
}

.seccion3 {
  background-color: transparent;
  width: 100%;
  height: 65vh;
}

.seccion4 {
  background-color: transparent;
  width: 100%;
  height: 100vh;
}

/* PRESENTACION */
.divicion1 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  padding-top: 2%;
  padding-bottom: 2%;
}

.parrafo_presentacion {
  box-sizing: border-box;
  margin: 15px;
  border: 3px;
  border-style: groove;
  border-color: white;
  padding: 10px;
  text-align: justify;
  width: 300px;
  height: auto;
  background-color: transparent;
}

.imagen1{
  width: 300px;
  height: auto;
}
/* FIN PRESENTACION */

/* SECCION MI PASO POR EL ILLIA*/

.illia {
  margin: auto;
  width: 70%;
  height: 90vh;
  padding: 30px;
  background-color: white;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.slider {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
}

.slider li {
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0;
  width: inherit;
  height: inherit;
  transition: opacity 0.5s;
  background: #fff;
}

.slider li img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: flex;
}

.slider li:first-child {
  opacity: 1;
}

.slider li:target {
  opacity: 1;
}

/* BOTONES DEL SLIDER */
.menu {
  text-align: center;
  margin: 20px;
}

.menu li {
  display: inline-block;
  text-align: center;
}

.menuitem {
  display: inline-block;
  color: white;
  text-decoration: none;
  background-color: grey;
  padding: 10px;
  width: 20px;
  height: 20px;
  font-size: 20px;
  border-radius: 100%;
}

.imgslide{
   width: 300px;
   height: 300px;
}
/* FIN BOTONES DEL SLIDER */

/* FIN SECCION MI PASO POR EL ILLIA*/

/* SECCION DATOS PERSONALES*/

.parrafo1 {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-around;
}
.parrafo_datos_personales {
  box-sizing: border-box;
  margin: 15px;
  border: 3px;
  border-style: groove;
  border-color: white;
  padding: 10px;
  text-align: justify;
  width: 75%;
  height: auto;
  background-color: transparent;
}
.galeria_redes{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-content: center;
  align-items: center;
  background-color: transparent;
  justify-content: space-around;
}

.imagenicon{
  width: 130px;
  height: 130px;
}

/* FIN SECCION DATOS PERSONALES */

/* SECCION EXPECTATIVAS A FUTURO */

/* PARRAFO EXPECTATIVA */
.parrafo2 {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-around;
}
.parrafo_expectativas {
  box-sizing: border-box;
  margin: 15px;
  border: 3px;
  border-style: groove;
  border-color: white;
  padding: 10px;
  text-align: justify;
  width: 75%;
  height: auto;
  background-color: transparent;
}
/* FIN PARRAFO EXPECTATIVA */

.fotos_futuro {
  width: 300px;
  height: auto;
}

.galeria {
  box-sizing: border-box;
  width: 80%;
  margin: auto;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}

/* FIN SECCION EXPECTATIVAS A FUTURO */

/* footer */

/* FLECHA RETORNO AL MENU */

#btn-fixed {
	display: block;
	position: fixed;
  bottom: 10px;
	right: 10px;
}


