body {
background-repeat: no-repeat;
background-position: center ;
background-color: #f5deb3;
font-family: 'Arsenal', sans-serif;
}
.container {
  display: grid;
  gap: 40px;
  grid-template-columns: auto auto auto auto;
  padding: 10px;
}

.container div {
  background-color: #fffff0;
  border: 2px solid black;
  padding: 20px;
  font-size: 30px;
  text-align: center;
  color: #000000;
}
h1 {
  color: #f5deb3;  
  text-align: center;
}


/* navigation */

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
/*  width: 238px; */
  background-color: #ffe4c4;
  border-bottom: 3px solid #555555;
  border-top: 2px solid #555555;
  border-left: 2px solid #555555;
  border-right: 5px solid #555555;
}

li a {
  display: block;
  color: black;
  padding: 8px 16px;
  text-decoration: none;
  border-bottom: 1px solid #555555;
}

/* Change the link and background colour on hover */
li a:hover {
  background-color: #ffe4c4;
  color: black;
  border-bottom: 1px solid #555555;
}

li:last-child {
  border-bottom: none;
}

li a.active {
  background-color: #04AA6D;
  color: white;
}

li a:hover:not(.active) {
  background-color: #555555;
  color: white;
}