33 أسطر
282 B
CSS
33 أسطر
282 B
CSS
body {
|
|
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
background: #f4f4f4;
|
|
|
|
}
|
|
|
|
|
|
h1 {
|
|
|
|
margin-top: 40px;
|
|
|
|
}
|
|
|
|
|
|
.card {
|
|
|
|
background: white;
|
|
width: 350px;
|
|
margin: 40px auto;
|
|
padding: 25px;
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
p {
|
|
|
|
font-size: 22px;
|
|
|
|
}
|