.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.celebration h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 7rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: #ffd700; /* Fallback gold color */
  background: -webkit-linear-gradient(top, #fff7ad 0%, #ffd700 50%, #e1b700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  word-spacing: 1rem;
}

.celebration-image {
    width: 500px;
    height: 350px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    object-fit: fill;
}

.sally-container {
    width: 800px;
    height: 550px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.sally-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.unmute-button {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1rem;
  border-radius: 5px;
}

.unmute-button:hover {
  background-color: #eee;
}


.content::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("/assets/sally-kick-e3514b92.png");
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
  opacity: 0.25;
  z-index: -1;
}

