
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.2;
}

.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 2em 1em;
  background-image: url('../img/markus-siebert_bg_tinkerbells-dorf_06.jpg');
  background-size: cover;
  background-position: center;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.cover-section {
  margin-bottom: 2em;
}

.cover-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}


.text-section {
  text-align: center;
}

.subtitle {
  font-size: 1.2em;
  color: #ddd;
  margin-bottom: 0;
}

h1 {
  font-size: 1.8em;
  font-weight: normal;
  margin: 0.0em 0;
}

.artist-name {
  font-size: 1.5em;
  margin-bottom: 1em;
}


.button-group {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 1em;
}

.button {
  background-color: #000;
  border: 1px solid #555;
  border-radius: 5px;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 1em;
  transition: background-color 0.3s ease;
  text-align: center;
}

.button:hover {
  background-color: #555;
}

/* Responsive */
@media (min-width: 600px) {
  .button-group {
    flex-direction: row;
    justify-content: center;
  }
}