@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

body {
  background: #cf2b4e;
  background: radial-gradient(ellipse at center, #cf2b4e 50vh, #9b203b);
  font: 400 62.5% "Playfair Display", "Times New Roman", Times, serif;
  color: #fff;
}

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

.splash-wrapper {
  text-align: center;
}

.logo {
  display: block;
  object-fit: contain;
  height: 50vh;
}
@media screen and (max-width: 560px) {
  .logo {
    height: auto;
    width: 90vw;
  }
}

h1 {
  font-size: 8em;
  margin: 0;
  letter-spacing: 3px;
}
@media screen and (max-width: 560px) {
  h1 {
    font-size: 5em;
  }
}

h2 {
  text-transform: uppercase;
  font-size: 3.2em;
  margin-top: 10px;
  letter-spacing: 3px;
}
@media screen and (max-width: 560px) {
  h2 {
    font-size: 2.1em;
  }
}

p {
  font-size: 1.6em;
  margin: 20px 0 0;
  line-height: 1.4;
}
@media screen and (max-width: 560px) {
  p {
    font-size: 1.4em;
  }
}
p a {
  color: #fff;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
