-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstylesheet2.css
101 lines (84 loc) · 1.59 KB
/
stylesheet2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
body {
font-family: "Josefin Sans", sans-serif;
background-color: #0fe9ba;
color: #333;
margin: 0;
padding: 0;
}
section a {
padding: 12px 30px;
border-radius: 4px;
outline: none;
text-transform: uppercase;
font-size: 14px;
font-weight: 500;
text-decoration: none;
transition: all 0.5s ease;
margin-bottom: 30px;
}
.button-container {
display: flex;
gap: 20px;
justify-content: center;
margin-top: 20px;
margin-bottom: 30px;
}
.btnone {
background: #fff;
color: #000;
}
.btnone:hover {
background: #00b894;
color: white;
}
h1 {
margin-top: 24px;
margin-bottom:40px;
text-align: center;
color: #333;
}
.btntwo {
background: #00b894;
color: white;
}
.btntwo:hover {
background: #fff;
color: #000;
}
.waterfall {
margin: 20px auto;
padding: 20px;
width: 80%;
background: #ffebb8;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 18px 18px 18px 18px;
}
.waterfall img {
display: block;
margin: 0 auto;
max-width: 100%;
height: auto;
border-radius: 18px 18px 18px 18px;
}
.waterfall h2 {
font-size: 24px;
margin: 10px 0;
text-align: center;
}
.waterfall p {
font-size: 16px;
text-align: center;
margin: 10px 0;
}
/* Responsive Styles */
@media (max-width: 768px) {
.waterfall {
width: 90%;
}
.waterfall h2 {
font-size: 20px;
}
.waterfall p {
font-size: 14px;
}
}