
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #7b1e1e;
  color: #fff;
  background-image: url('assets/pattern-left.png'), url('assets/pattern-right.png');
  background-repeat: repeat-y, repeat-y;
  background-position: left top, right top;
  background-size: 100px auto, 100px auto;
  padding: 0 100px;
}
.header-wrapper {
  text-align: center;
}
.header-top {
  background-image: url('assets/header-top.png');
  background-size: cover;
  background-position: center;
  height: 80px;
}
header {
  background-color: #7b1e1e;
  padding: 20px 20px;
}
header h1 {
  color: #fff3e0;
  font-size: 3.2em;
  margin: 0;
  text-shadow: 2px 2px #4e1919;
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
}
.header-bottom {
  background-image: url('assets/header-bottom.png');
  background-size: cover;
  background-position: center;
  height: 60px;
}
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}
.content-section {
  margin-bottom: 40px;
}
.content-section h2 {
  text-align: center;
  color: #ffe082;
  border-bottom: 2px solid #ffe082;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.media-item {
  background-color: #4e1919;
  border: 1px solid #ffcc80;
  border-radius: 10px;
  padding: 10px;
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.media-item span {
  flex: 1;
  margin-right: 20px;
  font-weight: bold;
}
audio, video {
  width: 300px;
  max-width: 100%;
}
footer {
  text-align: center;
  padding: 100px 20px 40px 20px;
  background-image: url('assets/pattern-footer.png');
  background-size: cover;
  background-position: center;
  color: #ccc;
  font-size: 0.9em;
}
