pdx-peculiarties/css/style.css
david f39b8439c0
All checks were successful
PDX Pecularities Server / deploy (push) Successful in 1s
style updates
2025-04-07 23:16:10 -07:00

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 {
}