24 lines
376 B
CSS
24 lines
376 B
CSS
body {
|
|
background-color: black;
|
|
align-items: center;
|
|
text-align: center;
|
|
font-family: 'JetBrains Mono', monospace;
|
|
}
|
|
h1 {
|
|
margin-top: 3vh;
|
|
color: white;
|
|
font-size: 12vh;
|
|
}
|
|
ul {
|
|
list-style-type: none;
|
|
color: black;
|
|
text-align: left;
|
|
font-size: 8vh;
|
|
}
|
|
li {
|
|
color: white;
|
|
}
|
|
.credit-text {
|
|
font-size: 4vh;
|
|
margin-top: 3vh;
|
|
} |