body {
    background-color:whitesmoke
  }

header-img {
  display: flex;
  width: 50%;
}

.header-container img.loaded {
  opacity: 1;
  transform: translateY(0px);
}

.header-heigth {
  height: 80%;
}

@media (max-width: 768px) {
  .header-md {
    display: flex;
    height: 600px;
  }
}

@media (max-width: 768px) {
  .header-img-md {
    width: auto;
    height: 600px;
    object-fit: cover;
  }
}

.header-img {
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.header-text {
  width: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;
  font-family: 'Abhaya Libre';
  background-color: white;
  z-index: 100;
  text-align: center;
  margin: 5% 0 5% 0;
}

.header-text-1 {
  font-size: 3rem;
  padding: 50% 0 50% 0;
  writing-mode: vertical-lr;
  text-orientation: upright;
}

.header-img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
  transition: 0.2s ease;
}

.header-img-container img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.header-img-container img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.header-container {
  display: flex;
  height: auto;
}

.counter-container {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 1.5rem;
}

.counter-numbers, .counter-denomination {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-evenly;
}

.counter-subsection {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Playfair Display';
}

.timer {
  font-size: xx-large;
}

.time-denomination {
  font-size: small;
}

.music-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}

.circular {
  --r: 140px;
  --start: -90deg;
  position: relative;
  display: block;
  width: calc(var(--r) * 2);
  height: calc(var(--r) * 2);
  margin: 1rem auto;
  border-radius: 50%;
  font-family: 'Abhaya Libre';
}

.circular span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
  white-space: pre;
}

.material-icons.music-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  font-size: xx-large;
}

@media (max-width: 768px) {
  .music-flower-1 {
    display: none!important;
  }
}

.music-flower-2 {
  width: 150px;
  height: auto;
  display: flex;
}

.music-flower-1 {
  display: flex;
  width: 200px;
  height: auto;
}

@media (max-width: 1200px) {
  .music-flower-2 {
    display: none;
  }
}

.our-story-section, .calendar-section, .dress-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3%;
}

.gift-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 5% 5% 10% 5%;
}

.calendar-img, .location-img {
  width: 80vw;
  max-width: 700px;
}

.dress-img-1, .dress-img-2 {
  width: 20vw;
  max-width: 200px;
}

.gift-img {
  width: 40vw;
  max-width: 400px;
}

.calendar-section-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.general-button {
  background-color: #ffffff;
  color: #000000;
  font-family: 'Playfair Display';
  border-color: #000000;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.general-button:active {
  background-color: black;
  color: white;
  font-family: 'Playfair Display';
  border-color: white;
  transform: translateY(-2px);
}

.general-button:hover {
  background-color: #e3e3e3;
  color: #000000;
  font-family: 'Playfair Display';
  border-color: #000000;
  transform: translateY(-2px);
}

.dress-images {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.slide-image {
  width: 100vw;
  height: auto;
}

.rotate {
  animation: spin 15s linear infinite; /* Example for continuous spin */
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.swal2-popup {
  font-size: medium;
  font-family: 'Raleway';
}

.footer-text {
  color: white!important;
}