
* {
  box-sizing: border-box;
}

body {
      font-family: "Libertinus Serif", serif;
      font-weight: 400;
      line-height: 1.6;
      background-color: white;
      min-height: 100vh;
      text-align: justify;
      margin:0;
}
h1, h2, h3{
  text-align: left;
}

.cv-container {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  background-color: white;
  overflow: visible;
  align-items: stretch; 
  
}
#content {
  flex: 3;
  background-color: white;
  margin: 0;
  border-radius: 8px;
}

.rectangulo-izquierda {
  flex: 1;
  background-color: #ffe0dde5;
  border-radius: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.habilidades-hobbies {
  display: flex;
  gap: 40px; /
}
.habilidades, .hobbies {
  flex: 1;
}

.rectangulo-derecha {
  flex: 2;
  padding: 20px;
  margin:0;
  min-height: 100%;
  background-color: white;
  border-radius: 0;
}
.img-circular {
  display: block;
  margin: 0 auto;         
  border-radius: 50%;     
  width: 200px;
  height: 200px;
  object-fit: cover; 
}
.datos-grandes{
  font-size: 20px;
}

h1 {
    color: #333;
  font-family: "Lobster", cursive;
  font-weight: 800;
  font-style: normal;
}

h2,h3 {
    font-family: "Staatliches", sans-serif;
    font-weight: 400;
}

.rectangulo-izquierda h2 {
  margin-top: 50px; 
}


