/* Estilo general del cuerpo */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #8db62a14;
  width: 800px;
  height: 650px;
  overflow: hidden;
}
h1{
	color:#2F1B0C;
	font-size:40px;
	margin:20px 0px 0px 20px;
}
/* Título centrado 
h2 {
  text-align: center;
  margin: 10px 0;
}

/* Contenedor de la imagen interactiva */
.contenedor {
  position: relative;
  width: 800px;
  height: 500px;
  background-image: url("../images/pcinteractivo.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #c8c2ab;
}

/* Estilo de las etiquetas interactivas */
.etiqueta {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 4px 6px;
  font-size: 10px;
  border-radius: 4px;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

/* Efecto hover en las etiquetas */
.etiqueta:hover {
  background-color: rgba(0, 0, 128, 0.8);
  transform: translate(-50%, -50%) scale(1.2);
}

/* Caja de descripción en la parte inferior */
#descripcion {
  width: 800px;
  height: 100px;
  background-color: #fff;
  margin-top: 0;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid #333;
}

   