/* body {
  background-image: url("background.jpg"); I put this in a comment so that the background image doesn't distract from the content.
} */

nav {
  padding: 15px 0;
}

ul {
  display: flex; /* Flexbox 1 */
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0 30px;
}
/*  */
a {
  color: rgb(255, 157, 96);
  text-decoration: underline;
  font-size: 1rem;
  font-weight: normal;
  margin: 0 100px; /* Yes I know that I shouldnt normally do this but why not. */
}

section {
  display: flex; /* Flexbox 2 */
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
  gap: 15px;
}

p {
  background-color: #5a5757;
  color: white;
  padding: 15px;
  width: 220px;
  border-radius: 4px;
  text-align: center;
  font-size: 0.95rem;
}

/* I named it this just to reagebait you into calling me over to your desk so then i can show you this comment :D */