-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
48 lines (41 loc) · 1.02 KB
/
styles.css
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
body {
font-family: Arial, sans-serif;
background-color: #7A8DBC; /* Light ultramarine blue background */
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
width: 80%;
margin: 0 auto;
padding: 20px;
}
h1 {
text-align: center;
color: #ffffff; /* White color for header text */
margin-bottom: 20px;
}
.card-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 20px;
}
.card {
background: #CDD9F5; /* Light blue background for the card */
border: 2px solid #9bb2d5; /* Slightly darker shade of ultramarine blue border */
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Noticeable shadow */
padding: 20px;
width: calc(33.333% - 20px); /* 3 cards per row with gap adjustment */
box-sizing: border-box;
}
.card h2 {
margin: 0 0 10px;
font-size: 1.5em;
color: #003f5c; /* Darker shade of ultramarine blue */
}
.card p {
margin: 5px 0;
color: #555; /* Dark gray text color */
}