* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --text-color: #e7369d;       
}

body {
  height: 100vh;
  font-family: 'Playfair Display', serif;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: linear-gradient(135deg, #ffd6e8, #e6d6ff, #fff0e6); */
  background-image: url(/Presentation1.png);
  
  overflow: hidden;
  transition: background 0.8s ease;
}

.container {
  text-align: center;
  /* max-width: 550px;
  min-height: 550px; */
  padding: 20px;
  /* background-color: blanchedalmond; */
  /* border-radius: 50%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:center;

}

.content {
    z-index: 1;
}

.title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

#missButton {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  background-color: var(--text-color);
  color: whitesmoke;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(255, 182, 193, 0.4);
  transition: all 0.3s ease;
}

#missButton:hover {
  transform: scale(1.05);
}

#missButton:active {
  transform: scale(0.95);
}

.message.show {
  opacity: 1;
}

.counter {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-color);
}


.hearts::before,
.hearts::after {
  content: "♡";
  position: absolute;
  font-size: 20px;
  opacity: 0.08;
  animation: float 12s linear infinite;
}

.hearts::after {
  left: 80%;
  animation-duration: 15s;
}

@keyframes float {
  0% { transform: translateY(100vh); }
  100% { transform: translateY(-100vh); }
}

#count-up-timer {
      color: var(--text-color);
}

.glow {
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: black;
  opacity: 0.5;
    /* border-radius: 25%; */
      width: 100vw;
  height: 100vh;
  z-index: 0;

}
