* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  background: white;
  position: fixed;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  color: black;
  overflow: hidden;
  font-family: "HKNova";
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.page {
  width: 100%;
  height: 100%;
}

h1 {
  font-size: 2.5em;
  margin-top: 1.5em;
  font-weight: 500;
}

#main {
  width: 100vw;
  height: 100vh;
  background: white;
  position: absolute;
  display: none;
}

#main .container {
  display: grid;
  grid-template-rows: 30% min-content;
  width: 70%;
  height: 100%;
  margin: auto;
}

#main #selection {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1em;
}

#main #selection .box {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
  background-color: black;
  color: white;
  display: grid;
  grid-template-rows: min-content auto min-content;
  grid-gap: 0.8em;
}

#main .number {
  font-weight: 800;
  text-align: center;
  font-size: 1.6em;
  padding-top: 0.5em;
  user-select: none;
}

#main .title {
  font-weight: 500;
  text-align: center;
  padding: 0 0.45em;
  font-size: 1.2em;
  user-select: none;
}

#main .duration {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 0.9em;
  font-weight: 500;
  padding-bottom: 0.8em;
  text-align: center;
  justify-content: center;
  align-items: baseline;
  user-select: none;
}

#player {
  width: 100vw;
  height: 100vh;
  position: absolute;
  display: none;
  background: white;
}

#player .container {
  display: grid;
  grid-template-rows: 20% auto min-content;
  width: calc(100% - 8em);
  height: calc(100% - 8em);
  padding: 4em;
  padding-top: 3em;
}

#player .play {
}

#player .player {
  display: grid;
  grid-template-columns: min-content auto min-content;
  grid-gap: 2em;
}

#player .page {
  white-space: nowrap;
  font-size: 2em;
  font-weight: 600;
}

#player .title {
  font-size: 2em;
  font-weight: 600;
}

#player .duration {
  margin-top: 0.5em;
  font-size: 1.6em;
  font-weight: 600;
}

#player .description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3em;
  font-size: 1.2em;
  line-height: 1.5em;
}

#player .en {
  font-weight: 600;
}

#player .de {
  font-weight: 400;
}

#player #selection {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 1em;
}

#player #selection .box {
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 100%;
  background-color: #eee;
  color: black;
  display: grid;
  grid-template-rows: min-content auto min-content;
  grid-gap: 0.4em;
}

#player #selection .number {
  font-weight: 800;
  text-align: center;
  font-size: 1em;
  padding-top: 0.4em;
  user-select: none;
}

#player #selection .title {
  font-weight: 600;
  text-align: center;
  padding: 0 0.3em;
  font-size: 0.9em;
  user-select: none;
  line-height: 1.4em;
}

#player #selection .duration {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 0.7em;
  font-weight: 600;
  padding-bottom: 0.8em;
  text-align: center;
  justify-content: center;
  align-items: baseline;
  user-select: none;
}

#player .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  background: #000;
  width: 0;
}

#player .start {
}
#player .stop {
  display: none;
}

#player .start img,
#player .stop img {
  width: 86px;
}
