42 lines
544 B
CSS
42 lines
544 B
CSS
|
|
body {
|
|
background-color: black;
|
|
max-width: 100ch;
|
|
margin: 1rem auto;
|
|
}
|
|
|
|
main {
|
|
font-family: sans-serif;
|
|
color: hotpink;
|
|
padding: 1rem;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
div.subtitle {
|
|
text-align: center;
|
|
font-style: italic;
|
|
}
|
|
|
|
a:link {
|
|
color: skyblue;
|
|
}
|
|
|
|
a:visited {
|
|
color: gray;
|
|
}
|
|
|
|
section {
|
|
margin-top: 2ch;
|
|
border-top: 1ch double mediumvioletred;
|
|
}
|
|
|
|
section img {
|
|
display: block;
|
|
border: 0.25rem solid skyblue;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-height: 12rem;
|
|
}
|