-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
52 lines (51 loc) · 787 Bytes
/
app.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
body {
background-color: #f5d9d5;
font-family: "Nunito", sans-serif;
}
#mainNavbar .navbar-brand {
color: #ea121c;
}
#mainNavbar {
font-size: 1.5rem;
font-weight: 100;
}
#mainNavbar .nav-link {
color: white;
transition: 0.1s;
}
#mainNavbar .nav-link:hover {
color: #ea121c;
}
#headingGroup span {
color: #ea121c;
}
#headingGroup h2 {
font-size: 4rem;
font-weight: 100;
}
@media (max-width: 1200px) {
#headingGroup h2 {
font-size: 3.5rem;
}
}
.secondSection h2 {
font-weight: 100;
color: #ea121c;
font-size: 2.5rem;
}
.secondSection {
font-size: 1.125rem;
font-weight: 100;
color: #f498b8;
line-height: 2;
}
section {
margin-bottom: 100px;
}
.scrolled {
background: rgb(222, 192, 222);
transition: 0.5s;
}
a {
text-decoration: none;
}