Spaces:
Sleeping
Sleeping
File size: 727 Bytes
8c27dd8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | body {
background-color: white;
color: #333;
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
}
.main-title {
font-size: 3em;
font-weight: bold;
margin-top: 20px;
text-align: center;
color: #007bff;
}
.sub-header {
font-size: 1.5em;
margin: 20px 0;
text-align: center;
color: #333;
}
.card {
background-color: #f8f9fa;
border-radius: 10px;
padding: 20px;
margin: 20px;
height:300px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.card h2 {
font-size: 1.5em;
color: #007bff;
}
.card p {
color: #666;
}
|