.background{
  background-image: url("img/fondointro.jpg");
  max-height: 100%;
  padding: 12px;
}

.intro {
  padding: 100px 50px;
  background-size: cover;
}

.left-container {
  display: flex;
  justify-content: center;
  /* Centrar los elementos horizontalmente */
  align-items: center;
  /* Centrar los elementos verticalmente */
  background-color: rgba(0, 0, 0, 0.8);
  /* Un fondo negro con opacidad del 50% */
  padding: 20px;
  /* Agrega un espaciado interno para separar el contenido del borde */
  width: 900px;
  /* Ajustar el ancho del contenedor */
  height: 250px;
  /* Ajustar el alto del contenedor */
}

.my-photo-content {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease;
  /* Transición para el efecto de rotación */
  margin-right: 20px;
  /* Espacio entre la imagen y el texto */
}

.circular-image {
  /* Estilos para la imagen dentro del contenedor */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.my-photo-content:hover {
  /* Efecto de rotación al pasar el ratón sobre el contenedor */
  transform: rotate(360deg);
}

.intro-my-info {
  flex: 1;
  text-align: left;
}

.intro-my-info p {
  font-size: 20px;
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.proyectos{
  background-image: url("img/fondointro.jpg");
  background-size: cover;
}
.java-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}

#video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}