-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (49 loc) · 1.18 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ballet&display=swap');
html, body {
min-width: 600px;
min-height: 800px; /* your desired width */
max-width: 100%;
position: relative;
vertical-align:middle;
border-radius: 5%;
text-align: center;
color: whitesmoke;
text-shadow: 1px 1px 1px darkblue;
font-family: 'Righteous', cursive;
}
body {
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
a {
font-size: 25px;
font-family: 'Baloo 2', cursive;
font-weight: 15;
text-align: center;
line-height: 59px;
padding: 0 64px;
margin: 0;
padding-top: 40px;
color: #f2c94c;
text-shadow: 1px 1px 1px darkblue;
display: inline-block;
}
#premium{
font-family: 'Ballet', cursive;
font-size: 2em;
text-shadow: 6px 4px 4px black;
}