-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
59 lines (55 loc) · 1018 Bytes
/
main.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
.header {
background-image: url('Pictures/group-pic.jpg');
background-size: cover;
background-position: center;
position: relative;
}
.overlay {
position: absolute;
min-height: 100%;
min-width: 100%;
left: 0;
top: 0;
background: rgba(0, 0, 0, 0.6);
}
.navbar {
background:#0617b3;
}
.nav-link,
.navbar-brand {
color: #fff;
cursor: pointer;
}
.nav-link {
margin-right: 1em !important;
}
.nav-link:hover {
color: rgb(202, 161, 221);
}
.navbar-collapse {
justify-content: flex-end;
}
.description {
left: 50%;
position: relative;
top: 45%;
transform: translate(-50%, -55%);
text-align: center;
}
.description h1 {
color: #ffffff;
font-size: 400%;
}
.description h2 {
margin-top: 1%;
color: #ffffff;
font-size: 200%;
}
.description p {
font-size: 175%;
position:relative;
margin-top: 1%;
color: rgb(255, 255, 255);
margin-right: 10%;
margin-left: 10%;
}