- {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
padding: 20px;
}
header {
text-align: center;
background-color: #333;
color: #fff;
padding: 20px 0;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
margin-bottom: 10px;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
main {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
}
section {
margin-bottom: 40px;
}
h2 {
margin-bottom: 20px;
}
.project {
background-color: #fff;
padding: 20px;
margin-bottom: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.project h3 {
margin-bottom: 10px;
}
.project a {
color: #333;
text-decoration: none;
font-weight: bold;
}
footer {
text-align: center;
margin-top: 40px;
color: #666;
}