/* Set default styles for the whole page */
body {
font-family: Arial, sans-serif;
font-size: 16px;
margin: 0;
}
/* Style the header */
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
header h1 {
margin: 0;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}
nav li {
margin: 0 10px;
}
nav a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
/* Style the main content */
main {
padding: 20px;
max-width: 800px;
margin: 0 auto;
}
section {
margin-bottom: 40px;
}
section h2 {
font-size: 32px;
margin-bottom: 20px;
}
section p {
line-height: 1.5;
text-align: justify;
}
/* Add a background color to the "Contact us" section */
#contact {
background-color: #f5f5f5;
padding: 20px;
text-align: center;
}
/* Style the link in the "Contact us" section */
#contact a {
color: #333;
text-decoration: none;
font-weight: bold;
}
#contact a:hover {
text-decoration: underline;
}