website/assets/css/styles.css
TheErrorExe 220f89fc55 test
2025-02-07 13:18:03 +00:00

65 lines
1021 B
CSS

/* Basic Reset */
body {
margin: 0;
font-family: Arial, sans-serif;
line-height: 1.6;
}
header {
background: #333;
color: #fff;
padding: 1rem 0;
}
header nav ul {
list-style: none;
text-align: center;
}
header nav ul li {
display: inline;
margin: 0 15px;
}
header nav ul li a {
color: #fff;
text-decoration: none;
}
.hero {
background: url('../images/hero-bg.jpg') no-repeat center center/cover;
color: #fff;
text-align: center;
padding: 3rem 0;
}
.hero .button {
background: #007BFF;
color: #fff;
padding: 0.5rem 1rem;
text-decoration: none;
border-radius: 5px;
}
.project-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
padding: 2rem;
}
.project-card {
background: #f4f4f4;
padding: 1rem;
border-radius: 5px;
text-align: center;
}
footer {
text-align: center;
background: #333;
color: #fff;
padding: 1rem 0;
margin-top: 2rem;
}