:root {
  --ff-cursive: "Sofia", cursive;
  --ff-body: "Montserrat", serif;
}
body {
  color: #ffffff;
  font-family: var(--ff-body);
  background: url(img/bg.jpg) left fixed;
  background-size: cover;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
.container {
  display: grid;
  gap: 4em;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80vw;
  max-width: 65rem;
  margin: 0 auto;
}
.col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hide {
  display: none;
}
.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.year {
  font-size: clamp(10rem, 15vw, 15rem);
  top: -0.15em;
  z-index: -1;
  letter-spacing: 2pt;
  font-weight: 400;
  font-style: normal;
  line-height: 0.7;
  font-family: "Rozha One", serif;
}
.year span {
  font-family: var(--ff-cursive);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}
.counter {
  width: min(16em, 40vw);
  position: relative;
}
.countdown__timer {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 1em 0;
}
.countdown__timer__num {
  font-size: clamp(1.5rem, 5vw, 2rem);
}
.timer_label {
  font-size: clamp(0.5rem, 2vw, 0.875rem);
  line-height: 0.7;
  color: #6b6b6b;
}
.images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row: auto;
}
.shadow {
  -webkit-box-shadow: 4px 2px 30px rgba(255, 255, 255, 0.5);
          box-shadow: 4px 2px 30px rgba(255, 255, 255, 0.5);
}
.primary_image {
  width: min(50vw, 350px);
  grid-column: 1/4;
  grid-row: 1/3;
}
.secondary_image {
  width: min(30vw, 200px);
  grid-column: 3 / 5;
  grid-row: 2 / 3;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
.details {
  display: grid;
  justify-items: center;
}
.name {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin-bottom: 0.5em;
}
.eventInfo {
  font-family: var(--ff-cursive);
  font-size: clamp(1rem, 3vw, 1.675rem);
  line-height: 1.5;
  margin-bottom: 2em;
}
.cashapp {
  width: min(250px, 30vw);
  margin: 3em 0;
}
.quote {
  text-align: left;
  font-size: clamp(0.675rem, 2vw, 1.25rem);
}
.quote_symbol {
  font-size: 3rem;
  color: rgba(102, 89, 15, 0.6);
}
.auth {
  text-align: end;
  line-height: 5;
  position: relative;
}
.auth:before {
  content: "";
  width: 2.5em;
  height: 2px;
  border-bottom: 2px solid red;
  color: red;
  top: 1em;
  position: absolute;
}
