35 lines
619 B
CSS
35 lines
619 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, i.white {
|
|
color: white;
|
|
}
|
|
a, h1, p.green, i, h2 {
|
|
color: lime;
|
|
}
|
|
body {
|
|
background-color: black;
|
|
text-align: center;
|
|
}
|
|
p.red, a.red {
|
|
color: rgb(255, 42, 42);
|
|
}
|
|
div.linkz {
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-evenly;
|
|
font-size: 4em;
|
|
width: 100%;
|
|
height: 100vh;
|
|
box-sizing: border-box;
|
|
}
|
|
a.blue {
|
|
color: rgb(42, 255, 42);
|
|
}
|