/*
shortlisted–
headliner
family=Abril+Fatface&display=swap
family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap
family=Gloock&display=swap
body
*/
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Parkinsans:wght@300..800&display=swap');

@view-transition {
    navigation: auto;
}

/* Customize the default animation behavior */

::view-transition-group(root) {
    animation-duration: 0.5s;
}

* {
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  transition: all 0.5s ease-in;
  animation-timeline: scroll();
  font-family: "Parkinsans", system-ui, sans-serif;
  font-size: 1em;
  font-weight: 300;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}
@media (min-width: 37.5em) {
  html {
    font-size: calc(0.5em + 100vw * 0.0133333333);
  }
}
@media (min-width: 75em) {
  html {
    font-size: 1.5em;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: 4.5em; /* clamp(1em, 1em + 2vw, 3em); */
    letter-spacing: -2px;
	}
}

body {
  margin: 0;
  color: #444;
  background-color: beige;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
}

main {
  max-width: 80ch;
  margin-inline: auto;
  padding: 1.5em;
}
main > * {
  margin-block: 0;
}
main > * + * {
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Bodoni Moda", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #222;
  text-wrap: pretty;
}

main > h5 {
  font-size: 0.8em; text-transform: uppercase; letter-spacing: 4px; color:#888;
  @media (max-width: 37.5em) {font-size: 1.1em; margin:0 0 0.5em 0;}
}

button {
}

.main-id { position:absolute;
  @media (max-width: 37.5em) {width: 100px; position: relative;}
  @media (min-width: 75em) {width: 120px; top:20px;}
}
.sub-id{
  @media (max-width: 37.5em) {height: 8vmin;}
  @media (min-width: 75em) {height: 8vmin; margin:0 0 2vmin 0;}
}

.shoutout {
  place-self: center;
  background: linear-gradient(90deg, #aaa, #222, #aaa) -100%/ 200%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: shimmer 8s linear infinite;
}

@keyframes shimmer { to { background-position: 100% } }

.indef {
  border-radius: 20px;
  border: none;
  background: none;
  color: #222;
  text-align: left;
  padding: 8px 0px;
  transition: all 0.5s;
  cursor: pointer;
}

.indef:hover {
  background: #222;
  color: #fff;
  text-align: left;
  padding: 8px 20px;
  transition: all 0.5s;
}

.indef span {
  display: inline-block;
  position: relative;
  transition: 0.5s;
  font-family: "Parkinsans", system-ui, sans-serif;
  font-weight: 400;
  @media (max-width: 37.5em) {font-size: calc(0.8em + 100vw * 0.0133333333);}
  @media (min-width: 75em) {font-size: 1.5em;}
}

.indef span:after {
  content: '–';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
}

.indef:hover span {
  padding-right: 20px;
}

.indef:hover span:after {
  opacity: 1;
  right: 0;
}

.footer {
  font-size: 0.45em;
  bottom: 0px;
  position: absolute;
  @media (max-width: 37.5em) {font-size: 0.75em; position: relative;}
  @media (min-width: 75em) {font-size: 0.45em; bottom:20px;}
}

.footer > .copyb {font-weight: 400;}