/* links fuentes */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');

/* caracteristicas */

* {
  color: black;
  font-family: 'Raleway', sans-serif;
  margin: 0;
}

body {
  background-color: #dad7cd;
  width: 100vw;
}


header {
  position: absolute;
  top: 0;
  text-align: center;
  width: 100vw;
  background-color: #869258;
}

footer {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100vw;
  background-color: #869258;
}

h1 {
  font-size: 30px;
  font-family: 'EB Garamond', serif;
  text-align: center;
  background-color: #929c6d;
}

/* diseño base botones */

.navegador {
  width: 100vw;
  margin-top: 1em;
  background-color: #929c6d;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.titulo {
  width: 30%;
}

a {
  width: 10%;
}

/* formato boton */

button {
  border: 1px solid #588157;
  border-radius: 5px;
  background: rgb(255, 255, 255);
  color: #588157;
  font-style: italic;
  padding: 10px;
  padding-right: 14px;
  padding-left: 12px;
  font-size: 17px;
}

button:hover {
  background-color: #588157;
  color: white;
  border: 1px solid #588157;
}

/* diseño info personal */

.infopersonal {
  padding-top: 3%;
  width: 70%;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.imgpersonal {
  width: 40vw;
  margin-left: 2em;
  margin-right: 2em;
}

.textopersonal {
  width: 40vw;
}

/* formato footer */

footer .social-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 7px 5px;
}

footer .social-bar a {
  font-size: 25px;
  font-family: 'Times New Roman', Times, serif;
  color: #fff;
  transition: all .5s ease;
}

footer.social-bar .instagram:hover {
  transform: scale(1.5, 1.5);
  color: #3f729b;
}