-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (97 loc) · 1.76 KB
/
style.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
102
103
104
105
106
107
108
109
110
111
/* Custom @font-face declaration */
@font-face {
font-family: 'Georgia';
src: url('path/to/Georgia.woff2') format('woff2'),
url('path/to/Georgia.woff') format('woff');
font-display: swap; /* Ensures text remains visible during webfont load */
}
/* Base styles */
body {
color: #668B7C;
background-color: #FFDAB9;
font-family: 'Georgia', Serif;
align-items: center;
text-align: center;
justify-content: center;
}
/* Responsive layout adjustments */
@media (max-width: 480px) {
body {
font-size: 16px;
margin: 0;
}
#content {
padding: 0;
}
}
/* For medium screens */
@media (min-width: 768px) {
body {
font-size: 20px;
}
}
/* For large screens */
@media (min-width: 992px) {
body {
font-size: 24px;
}
}
/* For extra large screens */
@media (min-width: 1200px) {
body {
font-size: 28px;
}
}
/* Content section styling */
#content {
max-width: 650px;
padding: 20px;
margin: 0 auto;
margin-top: 5%;
align-items: center;
text-align: center;
justify-content: center;
}
#content h1 {
font-size: 1.75rem;
line-height: 1.5;
font-weight: bold;
margin-bottom: 10px;
}
#content p {
font-size: 1.75rem;
line-height: 1.5;
font-weight: 400;
text-align: center;
}
#content a {
color: #668B7C;
transition: color 0.2s;
}
#content a:hover {
color: #B66868;
text-decoration: underline;
}
/* Social media section styling */
.social-media {
display: flex;
justify-content: space-evenly;
max-width: 650px;
margin: 20px auto 5%;
padding: 20px;
margin-bottom: 15%;
}
.social-media a {
color: #668B7C;
text-decoration: none;
padding: 0;
border-radius: 5px;
background-color: #FFDAB9;
}
.social-media a:hover {
color: #B66868;
}
.social-media i {
margin-right: 10px;
font-size: 2rem;
}