-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
52 lines (44 loc) · 997 Bytes
/
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
/* CSS files add styling rules to your content */
body{
height: 100%;
margin: 0;
}
.header{
/* parallax stuff*/
height: 100vh;
background-attachment: fixed;
background-image: url("https://cdn.glitch.com/655b3491-e8e1-48f4-b593-f9ed911f67bc%2Fgeisel-bg.jpg?v=1570760777123");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
/* to align elements vertically and horizontally */
align-items: center;
display: flex;
justify-content: center;
background-color: #40407A;
/* padding: 50px; */
}
.header-text{
color: white;
font-family: 'Poppins', sans-serif;
font-size: 50px;
}
.profile-container{
display: flex;
flex-direction: row;
flex-wrap: wrap;
font-family: 'Poppins', sans-serif;
height: 100vh;
justify-content: center;
}
.profile{
color: black;
margin: 3em;
font-size: 20px;
text-decoration: none;
}
.subheader-text{
color: white;
font-family: 'Poppins', sans-serif;
text-align: center;
}