/* Reset og base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  text-align: center;
  background: linear-gradient(to top, #ffffffcc, #ffffffee), 
              url('Event_cover_photo_Facebook_1200x628px.jpg') bottom center no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.overlay {
  padding: 2rem;
}

/* Header */
header h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}

header h2 {
  font-weight: 300;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #333;
}

/* Shows */
.show {
  margin-bottom: 1.5rem;
}

.show p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Button */
.btn {
  display: inline-block;
  background: #d62828;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s;
}

.btn:hover {
  background: #a61e1e;
}

/* Responsivt */
@media (min-width: 600px) {
  header h1 {
    font-size: 3.5rem;
  }
  header h2 {
    font-size: 1.5rem;
  }
  .show p {
    font-size: 1.3rem;
  }
}
