blob: 8ed83facb34e167388f6861a5a49cd7744156175 (
plain) (
blame)
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
|
body{font-family:sans-serif;font-weight:600}
a{color:#000}
a:hover{color:#d3d3d3}
.flexbox {
width:95vw;
height:95vh;
display:flex;
align-items:center;
justify-content:center;
}
.content {
width:auto;
height:auto;
max-width:968px;
transition:0.33s ease
}
.flexbox:after{
content:"404";
position:absolute;
opacity:.1;
z-index:-1;
font-size:24rem;
transition:0.33s ease
}
@media(max-width:648px){
.flexbox:after{
font-size:12em
}
}
|