
html {
  font-size: 1rem;
}
@media screen and (min-width: 320px) {
  html {
    font-size: calc(16px + 6 * ((100vw - 320px) / 680));
  }
}
@media screen and (min-width: 700px) {
  html {
    font-size: 1.75rem;
  }
}

body {
	color: white;
	background: black;
	font-family: courier

}


a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

.responsive {
  max-width: 100%;
  height: auto;
}

.content {
  max-width: 650px;
  height: 650px;

  margin: auto;
  background: black;
  padding: 10px;
}

.container {
  position: absolute;
  top:5%;
}

.container2 {
  position: fixed;
  top:60%;
}

.textblock {
  position: absolute;
  top: 3%;
  right: 5%;
}

.textblock2 {
  position: absolute;
  width: 100%;
  top: 60%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.footer {
  position: fixed;
  width: 100%;
  left: 0;
  top: 720px;
  background-color: black;
  color: white;
  text-align: center;
}

.audio-player {
  height: 24px;
  background: #000a;
  box-shadow: 0 0 20px 0 #000a;
  font-size: 0.75em;
  overflow: hidden;
  display: grid;
  grid-template-rows: 6px auto;
}
