-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
45 lines (39 loc) · 915 Bytes
/
index.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
@import 'https://fonts.googleapis.com/css2?family=Poppins&display=swap';
* {
font-family: "Poppins", sans-serif;
}
html {
scroll-behavior: smooth;
}
body {
color: white;
background-color: black;
}
section {
background-image: url("/media/images/photography-of-macbook-half-opened-on-white-wooden-surface-633409.jpg");
background-size: cover;
background-repeat: no-repeat;
min-height: 100vh;
}
#hero {
display: grid;
grid-template: auto 1fr auto/1fr;
place-items: center;
}
#hero #name {
width: fit-content;
-moz-width: fit-content;
font-size: 9rem;
margin: 5rem auto 1rem auto;
animation-name: hero-h1-animation;
animation-delay: 400ms;
animation-duration: 1s;
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-fill-mode: forwards;
}
@keyframes hero-h1-animation {
100% {
letter-spacing: 1.2rem;
}
}
/*# sourceMappingURL=index.css.map */