-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
48 lines (43 loc) · 842 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-size: 2rem;
color: aliceblue;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.container{
min-height: 100vh;
width: 100%;
background-color: rgb(34, 178, 235);
display: flex;
flex-direction: column;
align-items: center;
justify-content:space-around;
}
#quote{
font-size: 3rem;
text-align: center !important;
color: white;
padding: 0.5rem;
}
/* #quote{
width: 90%;
flex-direction: row;
} */
@media screen and (max-width: 569px){
*{
font-size:1.5rem;
}
#quote{
font-size: 2.5rem;
}
}
@media screen and (max-width: 311px) {
*{
font-size:1rem;
}
#quote{
font-size: 2rem;
}
}