body {
  margin: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: black;
}

.frame {
  position: relative;
  width: 80%;
  max-width: 600px; /* Ajustar el tamaño para móviles */
  height: auto;
  aspect-ratio: 1; /* Mantener proporción circular */
  border: 10px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajuste sin deformar */
  pointer-events: none; /* Evita interacción con la imagen */
}

#snowCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#resetButton {
  position: absolute;
  bottom: 20px;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  background: white;
  cursor: pointer;
  border-radius: 5px;
  display: none; /* Por defecto oculto en móviles */
}

@media (min-width: 768px) {
  #resetButton {
    display: block; /* Mostrar en pantallas grandes */
  }
}