-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
44 lines (38 loc) · 989 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Fredoka:[email protected]&family=Pixelify+Sans:[email protected]&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Merriweather', sans-serif;
font-weight: 400;
color: #fff;
}
body {
height: 100vh;
background: #333;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.box-container {
display: flex;
flex-direction: column;
align-items: center;
width: 70%;
gap: 10px;
background: #00000033;
}
.gapper {
display: flex;
gap: 30px;
}
h1 {
font-family: 'Pixelify Sans', sans-serif;
}
img {
border: 5px solid #fff;
box-shadow: 5px 5px 0 #000;
}