31 lines
529 B
CSS
31 lines
529 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
color: #333;
|
|
}
|
|
|
|
.container {
|
|
background-color: white;
|
|
padding: 2rem;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
text-align: center;
|
|
width: 100%;
|
|
}
|
|
|
|
h1 {
|
|
color: #4a4a4a;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.fun-fact {
|
|
margin-top: 1rem;
|
|
font-size: 0.9rem;
|
|
color: #666;
|
|
font-style: italic;
|
|
} |