-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (72 loc) · 1.06 KB
/
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
61
62
63
64
65
66
67
68
69
70
71
72
@charset "UTF-8";
html, body {
margin: 0;
padding: 0;
}
html {
font-size: 62.5%;
font-family: 'Vollkorn', "Hiragino Kaku Gothic ProN", serif;
}
*, *::before, *:after {
box-sizing: border-box;
}
a {
text-decoration: none;
color: #000;
}
h1 {
/*text-rendering: optimizelegibili;*/
margin: 0;
font-size: 8rem;
color: #fff !important;
}
p {
font-size: 3rem;
}
header {
position: relative;
overflow: hidden;
width: 100%;
height: 100vh;
background: url("websitebackgrounds/resized_1.png") no-repeat;
background-size: cover;
}
.hello {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
}
hgroup {
display: inline-block;
text-align: center;
position: absolute;
width: 50%;
top: -250px;
right: 0;
bottom: 0;
left: 0;
height: 0px;
margin: auto;
color: #fff;
z-index: 2;
}
.overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: url("websitebackgrounds/resized_2.png") no-repeat;
background-size: cover;
z-index: 0;
opacity: 0;
}
.about {
width: 100%;
height: 100vh;
padding: 80px;
text-align: center;
}