-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
84 lines (70 loc) · 1.15 KB
/
styles.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
73
74
75
76
77
78
79
80
81
82
83
84
@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto+Slab:wght@700&display=swap');
* {
box-sizing: border-box;
}
body {
margin: 0;
height: 100%;
font-size: 20px;
color: rgb(210, 194, 213);
font-family: 'Poppins', sans-serif;
background-color: #0b0613;
}
.wrapper {
margin: 0 auto;
max-width: 1060px;
}
::selection {
background-color: #9b9566;
}
a {
color: #8d52ff;
text-decoration: none;
}
a:hover {
color: #f8e008;
text-decoration: underline;
}
/* hi */
.greeting {
display: grid;
place-items: center;
grid-auto-flow: column;
margin: 75px 50px 50px 50px;
justify-content: start;
}
.hi {
font-family: 'Roboto Slab', serif;
font-size: 2rem;
padding: 0 50px;
line-height: 2;
color: #8d52ff;
}
.wave {
font-size: 3rem;
margin-left: 50px;
}
.wave:hover {
animation: wave-animation 0.3s infinite;
}
@keyframes wave-animation {
0%,
100% {
transform: rotate(0deg);
}
25% {
transform: rotate(20deg);
}
75% {
transform: rotate(-15deg);
}
}
/* ABOUT STYLIMG */
.about {
padding: 0 100px;
}
/* contact */
.contact {
margin-top: 30px;
padding: 0 100px;
}