.foto-perfil {
  width: 150px; /* Ajusta el ancho de la foto */
  height: 150px; /* Ajusta el alto de la foto */
  object-fit: cover; /* Mantiene las proporciones de la foto */
  border-radius: 50%; /* Opcional: agrega un borde redondo a la foto */
  margin-right: 20px;
  margin-top: 20px;
}
h2{
  margin-top: 20px;
}
.content {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  margin: 2rem auto;
  border-radius: 10px;
  max-width: 800px;
}
.content h2 {
  margin-top: 2rem;
}

/* Ajustes adicionales según sea necesario */
.image-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1; /* Send the image to the background */
}

.image-container img {
  width: 100%;
  height: auto;
  opacity: 0.8; /* Adjust the opacity of the image */
}