21 lines
340 B
CSS
21 lines
340 B
CSS
@font-face {
|
|
font-family: 'Rounded Elegance';
|
|
src: url('/fonts/rounded_elegance.ttf');
|
|
}
|
|
p, a, h1 {
|
|
font-family: 'Rounded Elegance', sans-serif;
|
|
}
|
|
p, p.white_fix {
|
|
color: white;
|
|
}
|
|
a, h1, p.green, i, h2 {
|
|
color: lime;
|
|
}
|
|
body {
|
|
background-color: black;
|
|
text-align: center;
|
|
}
|
|
p.red {
|
|
color: rgb(255, 42, 42);
|
|
}
|