-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
53 lines (48 loc) · 941 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
46
47
48
49
50
51
52
53
@import url('https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles&display=swap');
* {
margin: 0;
padding: 0;
}
body {
background-color: black;
display: flex;
height: 100vh !important;
justify-content: center;
align-items: center;
z-index: -1;
}
#parent {
background: transparent;
display: flex;
color: white;
border: 1px solid white;
justify-content: center;
border-radius: 15px;
box-shadow: 0 0 15px white;
box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.774);
font-size: 5rem;
padding: 10px;
z-index: 2;
}
#parent span {
text-shadow: 0 0 15px rgba(255, 255, 255, 0.815);
}
.colon {
margin: 0px 4px;
transform: translateY(-4px);
}
#heading{
color: white;
text-align: center;
font-family: 'Fuzzy Bubbles', cursive;
font-size: 4.6rem;
text-shadow: 0 0 15px rgba(255, 255, 255, 0.815);
}
@media only screen and (max-width:400px){
#parent{
font-size: 3rem;
}
#heading{
font-size: 3rem;
}
}