38 lines
583 B
CSS
38 lines
583 B
CSS
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Montserrat', sans-serif;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(135deg, #007BFF, #4DA8FF);
|
|
color: white;
|
|
padding: 6rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.section {
|
|
padding: 4rem 0;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.footer {
|
|
background-color: #343A40;
|
|
color: white;
|
|
padding: 2rem 0;
|
|
}
|