/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@font-face {
  font-family: "Poppins";
  src: url("Poppins-Medium.ttf");
}


body {
  background-color: whitesmoke;
  color: lightskyblue;
  font-family: Verdana;
  text-align: center;
  font-family: "Poppins";
}

ol {
  text-align: center;
}

h1 {
  text-align: center;
}

.cool {
  border: 1px solid black;
  padding: 2px 10px;
  margin: 0 auto;
  background-color: black;
  color: lightpink;        /* set text color inside the box */
  width: min(50%, 700px);   /* gives it a max width and allows wrapping */
  display: block;           /* NOT flex — allows normal text flow */
  text-align: center;       /* center text inside the box */
  white-space: pre-line;    /* respect your typed newlines */
  line-height: 1.1;
  border-radius: 5px;
}