forked from asynchronousJavascriptor/JD-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (43 loc) · 917 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,body{
width: 100%;
height: 100%;
}
body{
overflow-x: hidden;
}
#background{
width: 100%;
height: 100%;
background-color: black;
}
#wrapper{
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
background-size: contain;
background-position: 60%;
background-image: url(https://images.unsplash.com/photo-1541746972996-4e0b0f43e02a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1950&q=80);
}
#circle{
position: absolute;
transform: translate(-50%, -50%);
width: 60px;
height: 60px;
border-radius: 50%;
border: 1.2px solid #fff;
}
#wrapper h1{
color: #fff;
font-size: 600px;
font-weight: 900;
font-family: "Montserrat";
}