32 lines
549 B
CSS
32 lines
549 B
CSS
body {
|
|
background-color: #121212;
|
|
color: #FFFFFF;
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
.navbar {
|
|
background-color: #1E1E1E;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: 700;
|
|
color: #9146FF !important;
|
|
}
|
|
|
|
.nav-link {
|
|
color: #FFFFFF !important;
|
|
}
|
|
|
|
.nav-link.active, .nav-link:hover {
|
|
color: #9146FF !important;
|
|
}
|
|
|
|
.hero {
|
|
height: 60vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
background: linear-gradient(to right, rgba(145, 70, 255, 0.1), rgba(100, 65, 165, 0.1));
|
|
}
|