github-tool / style.css
Canstralian's picture
Update style.css
0b90898 verified
raw
history blame contribute delete
316 Bytes
body {
font-family: 'Arial', sans-serif;
}
.hero {
background: linear-gradient(to right, #007bff, #6c757d);
color: white;
}
#features {
background-color: #f8f9fa;
}
.card {
transition: transform 0.2s;
}
.card:hover {
transform: scale(1.05);
}
#contact {
background-color: #e9ecef;
}