-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (33 loc) · 797 Bytes
/
style.css
File metadata and controls
38 lines (33 loc) · 797 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Mouse+Memoirs&display=swap');
*{
margin: 0;
padding: 0;
font-family: 'Mouse Memoirs', sans-serif;
}
.main{
width: 100%;
height: 100vh;
background-image: url("bg.webp");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.main-title{
font-size: 5rem;
color: #eee;
font-weight: 600;
text-shadow: 0px 4px 20px rgb(0, 0, 0);
}
.main-desc{
font-size: 3rem;
color: #ccc;
text-shadow: 0px 4px 20px rgb(0, 0, 0);
margin-bottom: 1.5rem;
}
.game-canvas{
box-shadow: 1rem 1rem 5rem rgba(0, 0, 0, 0.4);
}