../public/snippets/css.css
CSS is the language that styles web pages, controlling layout, design, and responsiveness.
With over three years of experience using CSS, I have developed a strong grasp of its capabilities.
I have utilized CSS in multiple projects, optimizing user interfaces and ensuring responsive, clean designs.
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
line-height: 1.6;
}
header {
background: #007acc;
color: #fff;
padding: 1rem 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2rem;
}
header p {
margin: 0;
font-size: 1rem;
}
main {
padding: 2rem;
max-width: 800px;
margin: 0 auto;
background: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
main h2 {
color: #007acc;
}
footer {
text-align: center;
padding: 1rem 0;
background: #007acc;
color: #fff;
margin-top: 1rem;
}