/* info para resetear los valores */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
}

/* general */
body {
  background-color: #F2E3D5;
  color:#202020;
  font-family: 'Courier New', Courier, monospace, sans-serif;
}

main {
  margin: 2rem auto;
  max-width: 900px;
  padding: 30px
}

/* navegación */ 
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background-color: #038C8C;
  /* imagen fondito navegación */
  background-image: url('../imagenes/fondo.png');
  background-size: cover;
  background-position: center;
  min-height: 110px;
  
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-menu li a {
  color: #ffffff;
  font-weight:bolder;
}

.nav-menu li a:hover {
  color: #ffffff;
}

/* SOBRE MI */
.sobremi-contenedor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #3E2E2E;
  color: #ffffff;
  margin-bottom: 5rem;
  border-radius: 1rem;
  padding: 2rem;
  gap: 2rem;
  border-left: 4px solid #038C8C
}

.mi-foto {
  border-radius: 15%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  border: 5px solid #A2BF95;
}

.sobre-mi {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: left;
}

.contacto a {
  display: inline-block;
  margin-right: 1rem;
  color: #038C8C;
  text-decoration: none;
}

.contacto a:hover {
  text-decoration: underline;
}

/* TITULOS */
h1 {
  color: #F26B5E;
  border-bottom: 2px solid #F26B5E;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 1rem;
}

h2 {
  color: #F26B5E;
  text-decoration: underline;
  font-size: 25px;
  margin-bottom: 1rem;
}

h3 {
  font-size: 20px;
  margin-bottom: 0.5rem;
}

/* COLUMNAS HISTORIA ACADEMICA */
.historia-academica {
  margin-bottom: 3rem;
  

}

.columnas-academicas {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap; /* nota; es para q no se me encime todo el texto en version celu */
}

.columnas-academicas div {
  flex: 1;
  min-width: 250px;
}

.columnas-academicas ul {
  list-style-type: disc;
  margin-left: 1.5rem;
}

/* EQUIPO links */
.equipo-vm02 ul {
  list-style: none;
}

.equipo-vm02 a {
  color: #038C8C;
}

.equipo-vm02 a:hover {
  color: #ffffff;
}

.propuesta-individual {
  margin-top: 2rem;
}
/* INFO UBA */
#ubainfo {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 3rem;
}

.negritas-uba {
  font-weight: bold;
}

/* FOOTER */
footer {
  padding: 1rem;
  background-color: #3E2E2E;
}

footer p {
  color:#F2E3D5;
  font-size: 12px;
  text-align: left;
}