-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
43 lines (41 loc) · 804 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
body{
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
header{
position: absolute;
top: 15px;
text-align: right;
width: 100%;
}
header a{
color: rgba(255, 255, 255,0.5);
text-decoration:none;
margin-right: 100px;
font-family: Tahoma;
font-size: 16px;
transition: 0.5s ease-in-out;
}
header a:hover{
color: white;
}
main{
height: 100vh;
width: 100%;
background-image: url(images/big.png.jpg);
background-size:cover ;
background-repeat: no-repeat;
background-position: center;
background-position: center;
background-attachment: fixed;
display: flex;
justify-content: center;
align-items: center;
}
main h1{
margin: 0;
font-size: 50px;
color: black;
mix-blend-mode: overlay;
padding-bottom: 120px;
}