23 lines
274 B
CSS
23 lines
274 B
CSS
|
body {
|
||
|
display: grid;
|
||
|
justify-content: center;
|
||
|
align-content: center;
|
||
|
background-color: #181a1b;
|
||
|
color: white;
|
||
|
margin: 80px 0;
|
||
|
}
|
||
|
main {
|
||
|
max-width: 500px;
|
||
|
margin: 20px;
|
||
|
}
|
||
|
h1 {
|
||
|
color: #f10385;
|
||
|
}
|
||
|
section {
|
||
|
margin: 60px 0;
|
||
|
}
|
||
|
a {
|
||
|
color: #a692dd;
|
||
|
font-weight: bold;
|
||
|
}
|