| |
|
| | body { |
| | margin: 0; |
| | padding: 0; |
| | width: 100%; |
| | font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif; |
| | background-color: #f8fafc; |
| | } |
| | |
| | section { |
| | width: 100%; |
| | box-sizing: border-box; |
| | } |
| |
|
| | |
| | section:nth-child(odd) { |
| | background-color: white; |
| | } |
| |
|
| | section:nth-child(even) { |
| | background-color: #f1f5f9; |
| | } |
| | |
| | footer { |
| | background-color: #0f172a; |
| | color: white; |
| | } |
| | |
| | .card { |
| | background-color: white; |
| | border: 1px solid #e2e8f0; |
| | box-shadow: 0 1px 3px rgba(0,0,0,0.1); |
| | width: 100%; |
| | max-width: 100%; |
| | box-sizing: border-box; |
| | } |
| | |
| | header { |
| | background-color: white; |
| | box-shadow: 0 2px 4px rgba(0,0,0,0.05); |
| | width: 100%; |
| | } |
| | |
| | .pattern-navy.relative { |
| | background-blend-mode: overlay; |
| | width: 100%; |
| | } |
| | h1 { |
| | font-size: 16px; |
| | margin-top: 0; |
| | } |
| |
|
| | p { |
| | color: rgb(107, 114, 128); |
| | font-size: 15px; |
| | margin-bottom: 10px; |
| | margin-top: 5px; |
| | } |
| |
|
| | .card { |
| | max-width: 620px; |
| | margin: 0 auto; |
| | padding: 16px; |
| | border: 1px solid lightgray; |
| | border-radius: 16px; |
| | } |
| |
|
| | .card p:last-child { |
| | margin-bottom: 0; |
| | } |
| |
|