*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  display: flex;
  min-height: 100dvh;
  width: 100dvw;
  justify-content: center;
  align-items: center;
  background: bisque;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
  color: rgb(195 66 8);
  text-decoration: underline;
  font-family: "Courier New", Courier, monospac;
  text-align: center;
}

#container {
  width: 1000px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5em;
  padding: 4em;
}

#nav {
  text-align: center;
  border: 1px solid green;
}

ul {
  padding-inline-start: 0;
}

.nav-list {
  list-style: none;
  display: inline;
  text-align: center;
  padding: 0 1em;
}

#header {
  border: 2px solid blue;
}

#content {
  border: 1px solid orange;
  height: 610px;
}

#footer {
  border: 1px solid purple;
}

.section-text {
  width: 500px;
  float: left;
  margin-left: 0.75em;
  margin-right: 0.75em;
}

#south-park-banner {
  width: 250px;
  border-radius: 0.5em;
  border: 2px solid rgba(0, 0, 0, 0.3);
  float: left;
  margin-right: 0.75em;
}
