33 lines
417 B
CSS
33 lines
417 B
CSS
body {
|
|
background: #221c1c;
|
|
color: #fdfaff;
|
|
font-family: Serif;
|
|
}
|
|
|
|
a {
|
|
color: #FFB2C6ED;
|
|
}
|
|
|
|
.links {
|
|
text-align: center;
|
|
}
|
|
|
|
.content {
|
|
max-width: 550px;
|
|
text-align: justified;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.row {
|
|
display: grid;
|
|
grid-template-columns: 50% 50%;
|
|
gap: 0px 2px;
|
|
grid-auto-flow: row;
|
|
grid-template-areas:
|
|
"one two";
|
|
}
|
|
|
|
.one { grid-area: one; }
|
|
|
|
.two { grid-area: two; }
|
|
|