-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (50 loc) · 1.11 KB
/
style.css
File metadata and controls
56 lines (50 loc) · 1.11 KB
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
@font-face {
font-family: "Soyuz Grotesk";
src: url(https://code.s3.yandex.net/pp-kids-web-course/020105/SoyuzGrotesk_Bold.woff) format(woff),
url(https://code.s3.yandex.net/pp-kids-web-course/020105/SoyuzGrotesk_Bold.otf) format(opentype);
font-weight: 700;
font-style: normal;
display: swap;
}
* {
padding: 0;
margin: 0;
}
.main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
min-height: 100vh;
background: url('https://code.s3.yandex.net/pp-kids-web-course/020105/background-space.png');
background-position: center;
background-size: cover;
}
.title {
font-family: "Soyuz Grotesk", sans-serif;
font-size: 50px;
font-style: normal;
font-weight: 700;
line-height: normal;
color: white;
width: 90%;
max-width: 622px;
margin: 50px 0 24px;
}
.image {
object-fit: contain;
width: 90%;
max-width: 640px;
}
.emojis {
display: flex;
flex-direction: row;
gap: 6px;
flex-wrap: wrap;
width: 90%;
max-width: 622px;
}
.emoji {
font-size: 50px;
}