-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirstPage.css
61 lines (53 loc) · 1019 Bytes
/
firstPage.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
*{
margin: 0;
padding: 0;
}
body{
height: 100vh;
width: 100%;
background: url(./firstPageBg.png);
background-size:auto;
font-family: "Irish Grover", system-ui;
display: flex;
flex-direction: column;
justify-content: center;
}
#Container{
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 48px;
backdrop-filter: blur(1px);
}
#logoBox{
font-size:128px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
#ballImg{
width: 110px;
height: 110px;
}
.btn{
font-family: 'Irish Grover',system-ui;
background-color: #C9FF2F;
border-radius: 24px;
color: #000234;
font-size: 48px;
width: fit-content;
padding: 7px 71px;
cursor: pointer;
}
@media screen and (min-width:300px) and (max-width:760px) {
#logoBox{
font-size: 64px;
}
#ballImg{
width: 55px;
height: 55px;
}
}