body {
  background-color: black;
  color: white;
  font-family: 'Times New Roman', monospace;
  margin:0;
  padding: 0 20px;
}

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

.case-title-bar {
  background-color: #400470;
  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;
  align-items: stretch;
}

.case-text {
  width: 75%;
}

.case-text p {
  width: 75%;
  font-size: 14px;
  line-height: 1.5;
}

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

.case-img img {
  width: 100%;
  border: 1px solid white;
}

a:hover {
  color: solid white;
  text-decoration: underline;
}

a:visited {
  color: purple;
  text-decoration: none;
}

a {
  color: #400470;
  text-decoration: none;
}

a:active {
  color: grey;
  text-decoration: none;
}

