body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #000000;
    color: #2b1b0f;
}

.hero {
	text-align:center;
}

img {
	text-align:center;
	width:100%;
  height: auto;    /* Maintain aspect ratio */
  /*display: block;  /* Removes bottom whitespace */		
}

nav {
    background: #5b1f10;
    padding: 0px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-weight: bold;
}
audio {
	max-width: 100%;
}

video {
  width: 100% !important;
  height: auto !important;
	object-fit: cover;
}

.card {
    background: #fff4dd;/**/
    width: 80%;
    margin: 25px auto;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,.2);/**/
}

.placeholder {
    background: #e6d3ad;/**/
    border: 2px dashed #8b6a3c;
    padding: 10px;
    text-align: center;
}

h2 {
	padding: 0px;
	margin: 5px;
}

blockquote {
    background: #f5e5bf;
    padding: 5px;
    border-left: 5px solid #8b2f17;
}

.download-btn {
    display: inline-block;
    background: #8b2f17;
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    border-radius: 8px;
}

footer {
    background: #2b1b0f;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}
/* Desktop styles (Apply when screen is 1024px or wider) */
@media (min-width: 1024px) {
  .placeholder {
    width: 960px; /* Fixed width for readability on PC */
    margin: 0 auto; /* Center the container */
  }
}