*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: #312131;
  font-family: 'Marvel', sans-serif;
  min-height: 100vh;
}
div:focus {
  outline: none;
}
.container {
  background: #312131;
  border-radius: 4px;
  margin: 40px auto 0 auto;
  padding: 0 10px;
  width: 90%;
}
#title,
#content {
  padding: 15px;
}
#title {
  border-bottom: 1px solid #aaa;
  font-size: 3rem;
  font-weight: bold;
  font-color: white;
}
#content {
  font-size: 2rem;
}

#title {
	color: red;
}
#content {
	color: white;
}
