

body {
  text-align: center;
  background: linear-gradient(to bottom, #719C6A, white);
  font-size:2em;
  color: white;
  font-family: Cursive;
  margin:0;
}

#container {
width:1300px;
margin:auto;
padding:50px;
}

header {
  text-align:center;
  font-size:1.2em;
  color:white;
  font-family: Cursive;
  text-shadow: 0 0 5px #0D0200, 0 0 10px #0D0200;
  margin-bottom:20px;
}

#content {
display:flex;
gap:20px;
}

nav {
  width: 200px;
  background-color: #547050;
  padding:15px;
  border-radius: 10px;
  box-shadow: 0 0 15px #3D5739;
}

nav a {
  color: white;
  text-decoration: none;
  display: block;
  margin: 10px 0;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #A1C49B;
  text-shadow: 0 0 10px #3D5739;
}

main {
  flex:1;
  background-color: #A1C49B;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px #3D5739;
}