2025-04-01 09:26:52 +08:00
|
|
|
body {
|
2025-04-01 15:27:39 +08:00
|
|
|
font-family: 'Arial', sans-serif;
|
2025-04-01 14:41:18 +08:00
|
|
|
background-color: #f0f0f0;
|
2025-04-01 09:26:52 +08:00
|
|
|
display: flex;
|
2025-04-01 14:41:18 +08:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2025-04-01 15:27:39 +08:00
|
|
|
height: 100vh;
|
|
|
|
margin: 0;
|
2025-04-01 09:26:52 +08:00
|
|
|
}
|
|
|
|
|
2025-04-01 15:27:39 +08:00
|
|
|
h1 {
|
|
|
|
color: #333;
|
|
|
|
font-size: 3rem;
|
2025-04-01 14:41:18 +08:00
|
|
|
text-align: center;
|
|
|
|
padding: 20px;
|
2025-04-01 15:27:39 +08:00
|
|
|
background-color: white;
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
|
|
animation: fadeIn 1.5s ease-in-out;
|
2025-04-01 10:36:26 +08:00
|
|
|
}
|
|
|
|
|
2025-04-01 15:27:39 +08:00
|
|
|
@keyframes fadeIn {
|
|
|
|
from { opacity: 0; transform: translateY(-20px); }
|
|
|
|
to { opacity: 1; transform: translateY(0); }
|
2025-04-01 09:26:52 +08:00
|
|
|
}
|