xxxxxxxxxx
1
<h1><span>I</span>M<span>POSSIBLE</span></h1>
xxxxxxxxxx
1
/* Base */
2
body {
3
padding: 0;
4
margin: 0;
5
background-color: #000;
6
display: flex;
7
align-items: center;
8
justify-content: center;
9
min-height: 100vh;
10
}
11
h1 {
12
color: hsl(0, 0%, 28%);
13
font-size: 50px;
14
font-weight: bold;
15
font-family: monospace;
16
letter-spacing: 7px;
17
cursor: pointer;
18
}
19
20
h1 span {
21
transition: 0.5s ease-out;
22
}
23
h1:hover span:nth-child(1) {
24
margin-right: 5px;
25
}
26
h1:hover span:nth-child(1):after {
27
content: "'";
28
}
29
h1:hover span:nth-child(2) {
30
margin-left: 30px;
31
}
32
h1:hover span {
33
color: #fff;
34
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff;
35
}
1
1
Console errors: 0