-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
123 lines (102 loc) · 1.74 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
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
112
113
114
115
116
117
118
119
120
121
122
123
/* styles.css */
/* Root Variables */
:root {
--primary-color: #36016b;
--secondary-color: #ad026e;
--tertiary-color: #24293e;
--quaternary-color: #ffffff;
}
/* Global Reset */
body, h1, h2, h3, h4, h5, h6, p, ul, ol {
margin: 0;
padding: 0;
}
body {
font-family: 'Open Sans', sans-serif;
background-color: var(--quaternary-color);
color: var(--tertiary-color);
}
.container {
width: 80%;
margin: 0 auto;
}
header {
background-color: var(--primary-color);
padding: 20px 0;
color: #fff;
}
.logo-container {
text-align: center;
}
.logo img {
max-width: 550px;
height: auto;
display: inline-block;
margin-bottom: 5px;
}
.logo h2, .logo h3 {
margin: 0;
}
.logo h2 {
font-size: 5.5rem;
margin-top: -5px;
}
.logo h3 {
font-size: 3.5rem;
margin-top: -5px;
}
nav {
text-align: right;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: inline-block;
}
nav ul li {
display: inline-block;
margin-left: 20px;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-size: 1.2rem;
}
.content {
padding: 50px 0;
text-align: justify;
}
footer {
background-color: #36016b;
color: var(--tertiary-color);
padding: 20px 0;
text-align: center;
}
/* Additional Styles */
.menu__item {
color: #fff;
text-decoration: none;
font-size: 1.2rem;
}
.contact {
margin-top: 30px;
padding: 20px;
background-color: #d3d2f7;
border-radius: 5px;
text-align: center;
}
.contact h3 {
font-size: 1.5rem;
color: #333;
}
.contact hr {
border: none;
border-top: 1px solid rgba(0, 0, 0, 0.3);
margin: 10px auto;
width: 50%;
}
.contact p {
font-size: 1rem;
color: #666;
}