26 lines
445 B
CSS
26 lines
445 B
CSS
body {
|
|
background-color: #0F1310;
|
|
color: #E0E0E0;
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
font-family: 'Cinzel', serif;
|
|
color: #B68D4C;
|
|
}
|
|
|
|
.btn-accent {
|
|
background-color: #B68D4C;
|
|
color: #0F1310;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.card {
|
|
background-color: #1C2320;
|
|
border: 1px solid #333;
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
} |