:root {
  --bg-color: #f9f1d2;
  --text-color: #3a1e0d;
  --accent-color: #821f17;
  --border-color: #4a2a16;
  --font-family: 'Raleway', sans-serif;
}

/* Global */
body {
  background-color: var(--bg-color);
  font-family: var(--font-family);
  text-align: center;
  margin: 0;
  padding: 0;
}

/* Header */
header h1 {
  font-size: 2.2rem;
  margin: 20px 0 10px;
  color: var(--text-color);
  font-weight: bold;
}
header h1 a {
  color: inherit;
  text-decoration: none;
}

/* Trenner */
header hr {
  width: 100%;
  height: 10px;
  background-color: var(--border-color);
  border: none;
  margin: 20px 0 30px;
}

/* Bereichstitel */
h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Bilder */
img {
  width: 80%;
  max-width: 350px;
  border: 5px solid var(--border-color);
  margin-bottom: 20px;
  border-radius: 8px;
}

/* Info-Sektionen */
.info-section {
  margin-bottom: 30px;
}

/* Unterüberschriften */
h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 20px auto 10px;
}

.uppercase-title {
  text-transform: uppercase;
}

/* Text */
p {
  font-size: 1.05rem;
  font-weight: bold;
  margin: 0 0 12px;
  line-height: 1.4;
}

/* Username */
#username {
  text-transform: uppercase;
}
