24 lines
423 B
CSS
24 lines
423 B
CSS
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
background-color: #f0f0f0;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
|
|
.hero-section {
|
|
background: linear-gradient(45deg, #1a1a2e, #16213e);
|
|
color: #ffffff;
|
|
padding: 100px 0;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #e94560;
|
|
border-color: #e94560;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #d43d51;
|
|
border-color: #d43d51;
|
|
} |