body {
  background-color: black;
  color: white;
  font-family: 'Times New Roman', monospace;
  background-image: url('graphics/stars.gif');
  margin:0;
  padding: 0 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

header {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
  border: 1px solid white;
  box-sizing: border-box;
  text-align: center;
}

.banner {
  width: 100%;
  display: block;
  height:220px;
  border: 0.5px solid white;
}

.main-nav {
  margin-top: 5px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.main-nav a {
  color: red;
  text-decoration: none;
  margin: 0 10px;
  white-space: nowrap;
}

.main-nav a:hover {
  text-decoration: underline;
}

.main-nav a:active {
  color:#bababa;
}

.case-entry {
  width: 800px;
  margin: 40px auto;
  border: 1px solid white;
  background-color: black;
}

.case-title-bar {
  background-color: #c30000;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  border-bottom: 1px solid white;
}

.case-name {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.case-date {
  font-size: 12px;
  opacity: 0.8;
}

.case-body {
  display: flex;
  padding: 10px;
}

.case-text {
  width: 75%;
}

.case-text p {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.5;
}

.read-more {
  font-size: 12px;
  margin-top: 10px;
  color: lightblue;
}

.case-img {
  width: 25%;
  padding-left: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.case-img img {
  width: 200px;
  height: auto;
  border: 1px solid white;
}

a {
  color: #bd0000;
}

header img {
  display: block;
}








