pdx-peculiarties/css/style.css
david b7760ab0d1
All checks were successful
PDX Pecularities Server / deploy (push) Successful in 1s
website formatting
2025-04-07 20:03:29 -07:00

40 lines
573 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;
justify-content: center;
}
div {
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 {
}