body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f0f0f0;
}

.necklace-container {
  width: 90vw;
  height: 90vw;
  max-width: 90vh;
  max-height: 90vh;
  position: relative;
}

.necklace {
  position: relative;
  width: 89%;
  height: 89%;
  border: 2px solid #333;
  border-radius: 50%;
  top: 5%;
  left: 5%;
}

.zodiac {
  width: 4%;
  height: 4%;
  background-size: cover;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.zodiac:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .necklace-container {
    width: 80vw;
    height: 80vw;
  }

  .zodiac {
    width: 5%;
    height: 5%;
  }
}

body {
    font-family: Arial, sans-serif;
    background-color: #08554b;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    padding: 0 1em;
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

p {
    font-size: 1.5em;
    margin-bottom: 1em;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 1em;
    flex-wrap: wrap;
}

#countdown div {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1em;
    border-radius: 5px;
    width: 80px;
}

#countdown span {
    font-size: 2em;
    margin-bottom: 0.2em;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    p {
        font-size: 1.2em;
    }

    #countdown div {
        width: 70px;
        padding: 0.8em;
    }

    #countdown span {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    #countdown div {
        width: 60px;
        padding: 0.6em;
    }

    #countdown span {
        font-size: 1.5em;
    }
}
