body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f2f2f2;
  color: #330000;
}

#wrapper {
  width: 960px;
  margin: 0 auto;
  background: white;
  border: 10px double black;
}

header {
  background-color: #990000;
  color: white;
  text-align: center;
}

#banner {
  width: 100%;
  height: auto;
  display: block;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #660000;
  display: flex;
  justify-content: space-around;
}

nav ul li a {
  color: white;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  background-color: #cc0000;
}

main {
  display: flex;
}

aside {
  width: 200px;
  background: #660000;
  color: white;
  padding: 10px;
}

aside h2 {
  font-family: "Impact", sans-serif;
  font-size: 22px;
  margin-top: 20px;
}

.stevo-img {
  width: 100%;
  margin-top: 20px;
}

.content {
  flex-grow: 1;
  padding: 20px;
  background-color: #fff0e5;
}

.content h1 {
  color: #990000;
  font-size: 24px;
}

.news-block {
  background-color: #ffe5cc;
  padding: 10px;
  border: 1px solid #cc6600;
}

.news-block .date {
  font-weight: bold;
  color: #cc0000;
}
.blog-post {
  background-color: #fff;
  border: 1px solid #990000;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 5px rgba(153, 0, 0, 0.2);
}

.blog-post h2 {
  margin-top: 0;
  color: #990000;
}

.blog-post .date {
  color: #555;
  font-size: 0.9em;
  margin-bottom: 10px;
}

.rant-post {
  background-color: #ffe6e6;
  padding: 15px;
  margin-bottom: 20px;
  border-left: 5px solid #cc0000;
  border-radius: 5px;
}

.rant-post h2 {
  margin-top: 0;
  color: #990000;
}

.rant-post .date {
  font-size: 0.9em;
  color: #666;
}


.blog-post {
  background-color: #fff;
  border: 1px solid #990000;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 5px rgba(153, 0, 0, 0.2);
}

.blog-post h2 {
  margin-top: 0;
  color: #990000;
}

.blog-post .date {
  color: #555;
  font-size: 0.9em;
  margin-bottom: 10px;
}

.center-text {
  text-align: center;
}

.archive {
  list-style: none;
  padding-left: 0;
  font-size: 0.9em;
}

.archive li {
  margin-bottom: 5px;
}

.archive a {
  text-decoration: none;
  color: white;
}

.archive a:hover {
  text-decoration: underline;
  color: cyan;
}

.interest-section {
  background-color: #1a1a1a;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px gold;
  color: white;
  text-align: center;
}

.interest-section h2 {
  color: crimson;
  margin-top: 0;
}

.interest-img {
  max-width: 100%;
  width: 300px;
  margin-top: 10px;
  border-radius: 10px;
}

.interest-img {
  max-width: 100%;
  width: 150px; /* You can change this to any size you like */
  height: auto;
  margin-top: 10px;
  border-radius: 10px;
}

.interest-img {
  width: 150px;
  height: auto;
  margin: 10px; /* adds space on all sides */
  border-radius: 10px;
}

.albums-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* spacing between images */
  justify-content: center;
}

.album {
  text-align: center;
  width: 150px;
}

.album img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.album img {
  width: 100%;
  height: 150px; /* Fixed height for uniform size */
  object-fit: cover; /* Crop to fill the area */
  border-radius: 10px;
}

.albums-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.album {
  width: 150px; /* or try 200px */
  text-align: center;
}

footer {
  width: 100%;
  text-align: center;
  background-color: #eee;
  padding: 15px;
  font-size: 0.9em;
  color: #333;
  border-top: 1px solid #ccc;
  margin-top: 30px;
}