@font-face {
  font-family: "JosefinSans";
  src:
    url("fonts/JosefinSans-Regular.woff2") format("woff2"),
    url("fonts/JosefinSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JosefinSans";
  src:
    url("fonts/JosefinSans-Bold.woff2") format("woff2"),
    url("fonts/JosefinSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  background: #ff7200;
  background: linear-gradient(45deg, #ff7200 0%, #ff4400 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.logo {
  display: block;
  width: 400px;
  max-width: 80%;
  margin: 120px auto 0;
}

.inhalt {
  width: 100%;
  text-align: center;
  padding: 40px 20px;
}

.inhalt.rechtlich {
  max-width: 800px;
  text-align: left;
  margin: 0 auto;
}

.inhalt.footer {
  margin-top: auto;
}

.links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 4rem auto 0 auto;
}

.links .link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.links .link svg {
  width: 48px;
}

h1,
h2,
h3,
h4,
h5 {
  color: #fff;
  padding: 60px 0 20px;
  font-family: "JosefinSans", Arial, Helvetica;
  font-weight: 700;
  text-transform: uppercase;
}

p {
  color: #fff;
  padding: 0 0 20px;
  font-family: "JosefinSans", Arial, Helvetica, monospace;
  font-weight: 400;
}

a {
  color: #fff;
}

a:hover {
  color: #fff;
}

::selection {
  background-color: #fff;
  color: #ff7200;
}

.player {
  display: flex;
  max-width: 600px;
  width: fit-content;
  align-items: center;
  gap: 2rem;
  border: 3px white solid;
  border-radius: 2rem;
  margin: auto;
  padding: 0.5rem;
  color: #fff;
  font-family: "JosefinSans", Arial, Helvetica, monospace;
  font-weight: 400;
  margin-top: 4rem;
}

.play {
  all: unset;
  display: flex;
  cursor: pointer;
}

.play:disabled {
  opacity: 0.7;
  cursor: auto;
}

input[type="range"] {
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2rem;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 2rem;
  background-color: #ff7200;
  border: 2px #fff solid;
}
