40 lines
404 B
CSS
40 lines
404 B
CSS
body {
|
|
font-size: 1.2em;
|
|
margin:0;
|
|
padding:0;
|
|
color: #FFF;
|
|
background: #222;
|
|
}
|
|
|
|
h1, h2, h3 {
|
|
margin: 1rem;
|
|
}
|
|
|
|
h3 {
|
|
color: #ED1846;
|
|
}
|
|
|
|
p {
|
|
margin: 1rem;
|
|
}
|
|
|
|
a {
|
|
color: #ED1
|
|
}
|
|
|
|
code {
|
|
color: gray;
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
text-align: center;
|
|
}
|
|
|
|
.splash {
|
|
font-size: 1.6rem;
|
|
text-align: center;
|
|
margin: 4vh auto;
|
|
width: 620px;
|
|
} |