body {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

body img {
  width: 100%;
}

/* Estilo del botón flotante */
#scrollTopBtn {
  display: none; /* Ocultar por defecto */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background-color: #333;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#scrollTopBtn:hover {
  background-color: #555;
}
