body {
background-color: #f5f5dc; /* beige paper-like background */
font-family: 'Times New Roman', Times, serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}
.container {
width: 60%;
max-width: 800px;
padding: 20px;
margin-top: 40px;
text-align: left;
background-color: rgba(255, 255, 255, 0.6);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
nav {
margin-bottom: 20px;
}
nav a {
margin-right: 15px;
text-decoration: none;
color: black;
}
nav a:hover {
text-decoration: underline;
}
h1, h2 {
margin-top: 0;
}
ul {
list-style-type: none;
padding-left: 0;
}
ul li {
margin-bottom: 10px;
}
ul li a {
color: black;
text-decoration: none;
}
ul li a:hover {
text-decoration: underline;
}
