body {
  margin: 0;
}
.list {
  background-image: url(rjs.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
}
header a {
  text-decoration: none;
}
header {
  display: flex;
  padding: 1em;
}
#logo {
  flex: 3;
  font-size: larger;
  font-weight: bolder;
  color: aliceblue;
}
nav {
  flex: 2;
  display: flex;
}
nav a {
  flex: 1;
  color: white;
}
nav a:hover {
  color: orange;
}
span {
  color: red;
}
.content span {
  color: rgb(0, 255, 110);
}
.content {
  text-align: center;
  color: rgb(154, 101, 22);
  margin-top: 200px;
}
