body {
  background-image: url("https://pbs.twimg.com/media/Fm3MqsVWQA89U_2.jpg");
}

.box {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Cookie Run";
  display: grid;
  grid-template-columns: 500px;
  grid-template-areas: "nav", "main", "aside", "section";
  gap: 5px;
}

@font-face {
font-family: "Cookie Run";
src: url("https://nocturnecreature.neocities.org/cookie_run/CookieRunFont_OTF/CookieRun%20Black.otf");
}

a {
  color: #3d3027;
}

a:hover {
  font-size: 20px;
}

nav {
  background-color: #e3d3c6;
  border: #b39b88 3px solid;
  border-radius: 5px;
  text-align: center;
  grid-column: 1 / 3;
  padding: 10px;
}

main {
  background-color: #e3d3c6;
  border: #b39b88 3px solid;
  border-radius: 5px;
  grid-column: 1 / 2;
  height: max-content;
}

aside {
  background-color: #e3d3c6;
  border: #b39b88 3px solid;
  border-radius: 5px;
  overflow: auto;
  white-space: nowrap;
  grid-column: 2 / 3;
  height: 300px;
  
}

section {
  background-color: #e3d3c6;
  border: #b39b88 3px solid;
  border-radius: 5px;
  grid-column: 1 / 3
}