-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
48 lines (41 loc) · 932 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
45
46
47
48
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
--background-color: #270040;
}
html, body {
height: 100%;
}
body {
margin: 0;
background-color: var(--background-color);
font-family: 'Roboto', sans-serif;
display: grid;
grid-template-areas: "."
"main"
".";
}
img {
width: 100%;
height: auto;
}
main {
grid-area: main;
display: grid;
grid-template-rows: repeat(3, 1fr);
justify-items: center;
align-items: center;
text-align: center;
margin: 0 10% 0 10%;
}
h1 {
color: white;
font-weight: 500;
}
main a {
background: linear-gradient(90deg, #FEAD4F 0%, #FB4E2F 100%);
text-decoration: none;
color: black;
padding: 20px 60px;
border-radius: 50px;
font-size: 20px;
}