-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (52 loc) · 966 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
53
54
55
56
57
58
59
60
body {
margin: 0;
padding: 0;
background-color: rgb(66, 65, 65);
}
#header {
height: 100vh;
width: 100%;
background-image: url("assets/background.jpg");
background-position: center center;
background-size: cover;
color: white;
text-align: center;
padding-top: 15%;
}
#logo {
height: 100px;
width: 100px;
margin-bottom: 10px;
}
h1 {
margin: 0;
font-size: 40px;
font-weight: bold;
font-family: "Open sans", sans-serif;
}
#container {
margin: 50px auto;
background-color: white;
width: 70%;
}
.image {
border-radius: 10px;
width: 30%;
height: 160px;
float: left;
margin-right: 20px;
}
.row {
min-height: 160px;
display: flex;
padding: 20px 30px;
}
h2 {
margin-top: 0;
margin-bottom: 5px;
font-family: "Open sans", sans-serif;
}
p {
margin: 0;
font-family: Georgia;
}