34 lines
543 B
CSS
34 lines
543 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
background: #fef6e4;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
main {
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'Permanent Marker', cursive;
|
|
font-size: 3rem;
|
|
font-weight: 400;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
p {
|
|
font-size: 1rem;
|
|
color: #666;
|
|
font-weight: 300;
|
|
}
|