-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
70 lines (60 loc) · 856 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
61
62
63
64
65
66
67
68
69
70
* {
margin: 0;
padding: 0;
box-direction: border-box;
}
body {
font-family: sans-serif;
}
.intro {
height: 100vh;
}
.intro video {
height: 100%;
width: 100%;
object-fit: cover;
z-index: -1000;
overflow: hidden;
position: absolute;
}
.titulo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 80px;
color: white;
}
.rendimiento {
position: absolute;
top: 50%;
left: 20%;
font-size: 60px;
color: white;
}
section {
height: 100vh;
color: black;
}
section h1 {
padding-top: 300px;
text-align: center;
font-size: 80px;
}
.githubpadre {
text-align: center;
margin-top: 100px;
}
.github {
font-size: 20px;
border-style: solid;
border-width: 2px;
padding: 18px;
border-color: black;
background-color: black;
color: white;
border-radius: 50px;
}
a:link {
text-decoration: none;
}