File size: 970 Bytes
38e828c |
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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
/* General Styles */
body {
padding: 2rem;
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
background-color: #f9fafb;
color: #374151;
line-height: 1.6;
}
/* Header Styles */
h1 {
font-size: 1.5rem;
margin-top: 0;
margin-bottom: 1rem;
color: #111827;
}
/* Paragraph Styles */
p {
color: #6b7280;
font-size: 1rem;
margin-bottom: 1rem;
margin-top: 0.5rem;
}
/* Card Container */
.card {
max-width: 620px;
margin: 1rem auto;
padding: 1.5rem;
border: 1px solid #e5e7eb;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
background-color: #ffffff;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
/* Card Text Adjustments */
.card p:last-child {
margin-bottom: 0;
}
/* Responsive Adjustments */
@media (max-width: 640px) {
body {
padding: 1rem;
}
h1 {
font-size: 1.25rem;
}
.card {
padding: 1rem;
}
}
|