@import url("https://fonts.googleapis.com/css2?family=Imperial+Script&family=Open+Sans:wght@400&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800&display=swap');


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

body p{
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: #ebba39;
  font-weight: 700;
}
body {
  background: rgb(2, 0, 36);
  background: linear-gradient(
      0deg,
      rgb(0 0 0 / 89%) 0%,
      rgb(59 59 186 / 0%) 64%
    ),
    url(1.jpg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1)
      no-repeat 50% 50% / cover;
  min-height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: calc(min(1400px, 90%));
  margin: 0 auto;
  padding-block: 3em;
  background-size: cover;
  background-position: center;
}

h1 {
  font-family: "Imperial Script", cursive;
  font-size: clamp(4rem, 20vw, 11rem);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 0.9;
  max-width: 900px;
}

.line {
  display: block;
  position: relative;
  width: 100%;
  max-width: 900px;
}

.line {
  font-size: clamp(1.5rem, 10vw, 3rem);
}
.button {
    margin: 70px 0px 0px;
}

.line::before {
  position: absolute;
  width: 40%;
  height: 3px;
  background: #fff;
  content: "";
  left: 0;
  top: 50%;
}

.line::after {
  position: absolute;
  width: 40%;
  height: 3px;
  background: #fff;
  content: "";
  right: 0;
  top: 50%;
}

.year {
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 5vw, 1.6rem);
  letter-spacing: 0.075em;
  margin-top: 1em;
}
.button a {
    color: #000000;
    text-decoration: none;
    font-size: 33px;
    border: 3px solid #fff9ea;
    padding: 13px 35px;
    border-radius: 63px;
    text-transform: uppercase;
    background: #ebba39;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    border: 1px solid #ffffff;
    text-shadow: 2px 4px 5px #8f8383;
}