45 lines
697 B
CSS
45 lines
697 B
CSS
body {
|
|
background-color: black;
|
|
/* font-family: "Arial", sans-serif; */
|
|
font-family: "Helvetica", "Arial", sans-serif;
|
|
display: flex;
|
|
color: red;
|
|
}
|
|
|
|
|
|
main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
/* align-content: center; */
|
|
align-items: center;
|
|
/* justify-content: center; */
|
|
}
|
|
|
|
div.section {
|
|
/* flex-basis: 0; */
|
|
width: 60%;
|
|
flex: 1;
|
|
/* display: flex;
|
|
flex-direction: column; */
|
|
}
|
|
|
|
h1 {
|
|
font-family: "Courier New", monospace;
|
|
font-size: 4rem;
|
|
text-shadow:
|
|
-1px -1px 0 white,
|
|
1px -1px 0 white,
|
|
-1px 1px 0 white,
|
|
1px 1px 0 white;
|
|
padding: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
h2 {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
p {
|
|
|
|
} |