body {
  margin: 0;
  padding: 0;
  min-width: 500px;
  contain: content;
}
/* -----((( HEADER )))----- */
.header-container-for-background {
  background-color: black;
}
header {
  text-align: center;
  max-height: 250px;
  margin: 0 auto;
  padding: 0 auto;
  contain: content;
}
header img {
  max-height: 200px;
}
/* ----- Nav ----- */
nav {

  margin: 0;
  padding: 10px 0;
}
nav ul {
display: flex;
  justify-content: space-around;
  list-style: none; 
  margin: auto;
  padding: 0%;
  width: 80%;
}
nav ul .li-first {
  padding-left: 10px;
}
nav ul li {
  font-weight: 550;
  text-align: center;
}
nav ul .li-last {
  padding-right: 20px;
}
nav ul li a {
  text-decoration: none;
  color: rgb(207, 204, 0);
  font-weight: 550;
  margin: 0;
}
/* -----((( MAIN )))----- */
main {
  max-width: 70%;
  margin: 0 auto;
}
h1 {
  text-align: center;
  font-size: 3.2em;
  line-height: 1.1;
}
/* -----((( FOOTER )))----- */
footer {
  margin: 0;
  padding: 10px 0;
  color: #eeeeee;
  text-align: center;
  align-content: center;
  height: 200px;
  background-color: black;
  width: 100%;
}
footer ul {
text-align: left;
  max-width: 800px;
  list-style-type: none;
}
footer li {
  background-color: black;
}
footer a {
  text-decoration: none;
  color: rgb(161, 161, 161);
  font-weight: 500;
  border-radius: 4px;
  padding: 5px;
  font-size: 1.3em;
}
footer a:hover {
  color: #f0f0f1;
  background-color: #a7a7a7;
  font-weight: 600;
}