body {
  background-color: powderblue;
  font-family: 'Courier New', monospace;
}
h1,h2,h3 {
  color: blue;
}
p {
  color: olive;
}

.container {
  display: flex;
  justify-content: center; /* Horizontal centering */
  /*align-items: center;     /* Vertical centering */
  height: 100vh;           /* Takes up full screen height */
  /* background-color: #f0f0f0; */
}

.box {
  padding: 20px;
  /*background-color: #007bff;*/
  color: white;
  margin: 10px;
}