/* =========================
   MODAL COVER STYLING
========================= */



/* CENTER CONTENT */
.cover-content{

  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 20px;

}

/* TITLE */
.cover-content h1{

  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: 1px;

  text-shadow: 0 10px 30px rgba(0,0,0,.4);

}

/* TEXT */
.cover-content p{

  opacity: .9;
  font-weight: 300;

}

/* GUEST NAME */
.cover-content .guest-name{

  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;

  margin: 20px 0;

  padding: 10px 20px;

  display: inline-block;

  border: 1px solid rgba(255,255,255,.3);

  border-radius: 20px;

  backdrop-filter: blur(10px);

  background: rgba(255,255,255,.08);

}

/* BUTTON PREMIUM */
#openInvitation{

  padding: 12px 40px;

  font-weight: 500;

  border-radius: 50px;

  transition: .3s ease;

}

#openInvitation:hover{

  transform: scale(1.05);

}