-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.css
56 lines (50 loc) · 820 Bytes
/
home.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
body{
display:flex;
flex-direction: column;
align-items: center;
height:100vh;
background-color: #d7ccc8;
color: #333;
}
main {
display:flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
width:100%;
flex: 1;
padding: 20px;
overflow-y: auto;
}
h1{
font-size: 10rem;
margin-top:5rem;
margin-bottom: 20rem;
}
.btn{
width:75%;
display:flex;
justify-content: space-between;
}
@media (max-width: 1022px) {
h1{
text-align: center;
}
}
@media (max-width: 920px) {
h1{
text-align: center;
}
.btn{
display: flex;
flex-direction: column;
}
.btn a{
text-align: center;
}
}
@media (max-width: 550px) {
h1{
font-size: 5rem;
}
}