Files
hello-world-pbm7dc/styles.css
2026-02-14 19:31:10 +00:00

32 lines
551 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;
max-width: 500px;
width: 100%;
}
h1 {
color: #4a4a4a;
margin-bottom: 1rem;
}
.fun-fact {
margin-top: 1rem;
font-size: 0.9rem;
color: #666;
font-style: italic;
}