@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&family=Montserrat:wght@100&family=Quicksand:wght@300;700&family=Roboto:wght@400;700&family=Sacramento&family=Zeyada&display=swap");
@import url(./sakura.css);

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

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.main-container {
  width: max-content;
  text-align: center;
}

.event-main-container {
  width: max-content;
  text-align: center;
}

.main-title {
  font-size: 60px;
  font-family: "Dancing Script", cursive;
}

.subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  margin-bottom: 30px;
}

.main-title-conect {
  font-family: "Dancing Script", cursive;
  font-size: 50px;
}

.date {
  font-family: "Quicksand", sans-serif;
}

.font-24 {
  font-size: 24px;
}

.font-14 {
  font-size: 14px;
}

.mt-40 {
  margin-top: 40px;
}

/* main page decoration */
.top-left-decoration {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50%;
}

.top-right-decoration {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 75%;
}

.bottom-right-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  transform: scaleY(-1);
  width: 75%;
}

.bottom-left-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  transform: scaleY(-1);
  width: 75%;
}

.event-subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 24px;
  text-align: left;
}

.event-item {
  width: max-content;
  text-align: left;
  margin: 20px;
}
.event-title {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.event-date {
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
}

.event-location {
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  width: 300px;
}

a {
  text-decoration: none;
  color: black;
}

.location-icon {
  margin: 0;
  margin-right: 25px;
  display: contents !important;
}

.main-section {
  height: 100vh;
}

.location-information {
  font-size: 8px;
  color: blueviolet;
}

.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

section .top-left-decoration {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

section .top-right-decoration {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 75%;
}

section .bottom-right-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  transform: scaleY(-1);
  width: 75%;
}

section .bottom-left-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  transform: scaleY(-1);
  width: 75%;
}

.creator {
  position: absolute;
  bottom: 0;
  left: 5%;
  text-align: left;
  font-family: "Quicksand", sans-serif;
  font-size: 8px;
}

.width-50 {
  width: 50%;
}

.width-75 {
  width: 75%;
}

#timer {
  font-family: "Quicksand", sans-serif;
  font-size: 12px;
}

.save-date {
  width: 90%;
}

.rotate-90 {
  transform: scaleX(-1);
}

.should-display {
  opacity: 0;
}

.creator {
  white-space: pre-line;
  margin-bottom: 12px;
}

.creator-link {
  color: brown;
}

@media screen and (min-width: 1200px) {
  section .top-left-decoration {
    width: 30%;
  }

  section .top-right-decoration {
    width: 30%;
  }

  section .bottom-right-decoration {
    width: 30%;
  }

  section .bottom-left-decoration {
    width: 30%;
  }

  section {
    width: 100%;
  }

  .save-date {
    width: 35%;
  }

  .should-display {
    opacity: 100;
  }

  .creator {
    position: absolute;
    bottom: 0;
    left: unset;
    font-size: 10px;
    text-align: center;
    align-items: center;
    justify-items: center;
    font-family: "Quicksand", sans-serif;
    white-space: unset;
  }
}
