body {
  background-color: #222;
  color: white;
  font-family: 'Times New Roman', Times, serif;
}

header {
  background-color: #660000;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li:first-child {
  margin-left: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

main {
  display: flex;
  margin: 50px;
}

.summary {
  flex: 3;
  padding-right: 50px;
}

.sidebar {
  flex: 1;
  background-color: #660000;
  color: white;
  padding: 10px;
  margin-left: 50px;
}

h2 {
  color: #CC9900;
}

footer {
  background-color: #660000;
  color: white;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

form label {
  display: block;
  margin-bottom: 10px;
}

form input[type="text"], form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  background-color: #444;
  color: white;
}

form input[type="submit"] {
  background-color: #CC9900;
  color: white;
  border
