@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Love+Ya+Like+A+Sister&display=swap');
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, #dd02ae, #25adfc);
  color: white;
  text-align: center;
  overflow: hidden; 
}
.container {
  max-width: 500px;
  padding: 40px;
  padding-left: 60px;
  padding-right: 60px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-family: "Love Ya Like A Sister";
}
h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: "Bebas Neue", serif;
}
.time-display {
  font-size: 1.5rem;
  margin-top: 10px;
}
@media (max-width: 768px) {
    .container{
        margin: 6%;
    }
}
#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Serduszka nie przeszkadzają w interakcji z innymi elementami strony */
}

.particle {
    position: absolute;
    top: -10px;
    font-size: 1.5rem; /* Możesz zmienić wielkość serduszek */
    color: red;
    animation: fall linear;
}

@keyframes fall {
    0% {
        transform: translateY(-10px);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}