:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  background: #a7a49f;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    url("/assets/home/slide-background.png") center / cover no-repeat fixed,
    #a7a49f;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    url("/assets/home/slide-background.png") center / cover no-repeat,
    #a7a49f;
}

.pitch-slide {
  position: relative;
  width: 100vw;
  max-width: calc(100dvh * 16 / 9);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  isolation: isolate;
  background:
    url("/assets/home/slide-background.png") center / cover no-repeat,
    #a7a49f;
}

.pitch-slide__logo {
  position: absolute;
  top: 15.59%;
  left: 34.12%;
  width: 28.76%;
  height: auto;
  display: block;
}

.pitch-slide__rule {
  position: absolute;
  top: 64.41%;
  left: 36.5%;
  width: 24%;
  height: max(3px, 0.32%);
  background: rgb(184 145 42 / 60%);
}

.pitch-slide__tagline {
  position: absolute;
  top: 64.45%;
  left: 18%;
  width: 64%;
  height: 8.89%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a7a7a;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 2.25rem);
  font-style: italic;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .pitch-slide__tagline {
    font-size: clamp(0.75rem, 3.2vw, 1.1rem);
  }
}
