@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap");

*:focus {
  outline: 0;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

html {
  background-color: #000;
}

html body {
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  color: #fff;
  background-color: #a669e4;
  background-image: linear-gradient(to bottom, #0000 0%, #0003 100%);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  padding: 2em;
}

html,
html body {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
}

.mobile-rotate {
  display: none;
  position: absolute;
  top: 0;
  width: 15vw;
  height: 15vh;
  color: #fff4;
}

@media (max-width: 680px), screen and (orientation: portrait) {
  .mobile-rotate {
    display: inline-block;
  }
}

#sect {
  width: 80vw;
  min-height: calc(80vw / 2);
  max-height: 80vh;
  aspect-ratio: 16/9;
  padding: 1em;
  border-radius: 0.5em;
  background-color: #000;
  display: flex;
  position: relative;
  transform-style: preserve-3d;
  perspective: 600px;
  animation: slide-in 3s cubic-bezier(0.3, 0.1, 0.3, 0.85) 1 forwards;
  top: -5vh;
}
@keyframes slide-in {
  from {
    transform: translateY(-160vh);
  }
}

#sect .art {
  left: 1em;
  right: 1em;
  top: 1em;
  bottom: 1em;
  position: absolute;
  z-index: 0;
  padding: 1em;
  box-shadow: inset 1ex 1ex 0.5ex rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: calc(2vw - 0.5vmin + 0.1vmax);
  overflow: hidden auto;
}

#sect .art .header {
  padding: 1em 0 2em;
}

#sect .art .header h1 {
  font-size: 3em;
}

#sect .art .main {
  padding: 0 2em 3em;
  display: flex;
  justify-content: center;
}

#sect .art .quote {
  font-size: 3ex;
  font-style: italic;
  font-family: "Permanent Marker", serif;
  line-height: 1.2;
  letter-spacing: 0.03ex;
  transform: rotate(-8deg);
  color: #a669e4;
  text-align: center;
  max-width: 60%;
}

#sect .art .liner-notes {
  width: 100%;
  font-weight: 300;
}

#sect .art .liner-notes .ln-list {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

#sect .art .liner-notes .ln-list.small {
  color: #fffa;
  justify-content: center;
  gap: 1em;
}

#sect .art .liner-notes .ln-list + .ln-list {
  margin-top: 8vmin;
}

#sect .art .liner-notes .ln-list .ln-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#sect .art .liner-notes .ln-list .ln-item .name {
  padding-right: 1ex;
}

#sect .art .liner-notes .ln-list .ln-item .svg-logo {
  width: 2em;
  height: 2em;
  padding-right: 1ex;
  vertical-align: middle;
}
#sect .art .liner-notes .ln-list .ln-item a {
  color: #fff;
  font-size: 1ex;
  color: currentColor;
  text-decoration: none;
}
#sect .art .liner-notes .ln-list .ln-item a:hover {
  text-decoration: underline;
  color: #a669e4;
}
#sect .art .liner-notes .ln-list .ln-item a:visited {
  color: #a669e4;
}

#sect .art .liner-notes .value {
  font-weight: bold;
}

#sect .menu {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  position: absolute;
  bottom: -3ex;
  flex: 1 0 100%;
  width: 100%;
}

#sect .menu .bttn-info {
  border-radius: 0 0 1ex 1ex;
  background-color: #000;
  padding: 1ex 1em;
  cursor: pointer;
  transition: all 0.1s cubic-bezier(0.5, 0.8, 0.5, 0.2);
}

#sect .menu .bttn-info:hover {
  color: #608fa6;
}

#vid {
  position: relative;
  z-index: 1;
  flex: 1 1 100%;
  justify-content: center;
  align-items: center;
  height: auto;
  transform-origin: center top;
  transition: all 0.3s cubic-bezier(0.6, 0, 0.4, 1);
}

#toggle {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

#toggle:checked + #sect #vid {
  transform: rotateX(80deg);
}

#toggle:checked + #sect .bttn-info {
  color: #608fa6;
  cursor: s-resize;
}

.small {
  font-size: 1ex;
  color: #fff8;
}

.italic {
  font-style: italic;
}

section.previous {
  padding: 1em;
}

section.previous a {
  color: #fff8;
  font-size: 2em;
}
@media (max-width: 680px), screen and (orientation: landscape) {
  section.previous {
    padding: 0;
  }

  section.previous a {
    font-size: 1em;
  }

  #sect {
    top: -6vh;
  }
}
