@font-face {
  font-family: "Epilogue";
  font-weight: 100 700;
  font-style: normal;
  src: url("/assets/fonts/Epilogue-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

ul {
  margin-left: 0.75rem;
}

:root {
  --color-background: #141121;
  --color-headline: rgb(238, 237, 255);
  --color-text: rgb(218, 202, 255);
  --color-link: #bc74ff;
  --font: "Epilogue", "Segoe UI", "Arial", sans-serif;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font);
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 4rem;
  align-items: center;
}

/* für h1; soll für Screenreader sichtbar bleiben*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

nav ul {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  list-style: none;
  color: var(--color-headline);
}

.outter-wrapper {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  margin: 0 auto;
  max-width: 1000px;
  min-height: 80vh;
}

main {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

a {
  color: var(--color-link);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline dotted;
  text-underline-offset: 4px;
  text-decoration-thickness: 3px;
}

a:focus {
  outline: 2px dashed var(--color-link);
  padding: 0.25rem;
  border-radius: 0.25em;
  text-decoration: none;
  transition: outline 0.2s;
}

/* SONG DES TAGES 
###################################################################*/

.song-des-tages--container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.song-des-tages--songzeile-chip {
  background-color: var(--color-headline);
  color: var(--color-background);
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  border-radius: 2rem;
}

h2.chip-style {
  font-size: 0.9rem;
  font-weight: normal;
  color: var(--color-background);
  font-family: var(--font);
}

.song-des-tages--aktuelle-songzeile p {
  width: 80%;
  font-size: 4rem;
}

@media (max-width: 600px) {
  .song-des-tages--aktuelle-songzeile p {
    font-size: 3rem;
    line-height: 1.2;
  }
}

/* GRID für Fän-Designs
###################################################################*/

.heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

h2 {
  font-weight: 400;
  font-size: 2rem;
  color: var(--color-headline);
}

#designs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.designs--grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 3rem;
  gap: 2rem;
}

@media (max-width: 700px) {
  .designs--grid-container {
    display: flex;
    flex-direction: column;
  }
}

.designs--grid-container--element {
  flex: 1;
  background-color: rgb(30, 29, 62);
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.designs--grid-container--element.no-background-color {
  background: none;
}

.designs--grid-container--element--bild {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.designs--grid-container--element--bild img {
  width: 100%;
  height: 100%;
  display: block;
}

.designs--grid-container--element--text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.download--container {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}

/* FOOTER
###################################################################*/

footer {
  background-color: rgb(24, 24, 52);
  padding: 2rem;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
}

@media (max-width: 700px) {
  footer ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

footer a,
header a {
  color: var(--color-headline);
}

/* UNTERSEITEN
###################################################################*/

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 3rem;
}

.link-wrapper {
  display: block;
  width: auto;
}
