body {
  display: flex;
  width: 800px;
  flex-direction: column;
  align-self: center;
  justify-self: center;
  place-self: center;
  border: solid 1px black;
  box-shadow: 5px 10px rgba(0, 0, 0, 0.3);
  padding: 20px;
  box-sizing: border-box;
}

.title {
  display: flex;
  width: 100%;
  justify-self: center;
  align-self: center;
  flex-direction: column;
  text-align: center;
}

.title h1,
.title h2 {
  margin: 4px 0px;
}

.body-content {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

h1 {
  margin: 8px 0px;
}

p {
  margin: 8px 0px;
}
