4
4
box-sizing : border-box;
5
5
}
6
6
7
+ body {
8
+ background : url ("https://images.unsplash.com/photo-1490237251747-4557595144b4?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxjb2xsZWN0aW9uLXBhZ2V8MXwxMDcxMTcwfHxlbnwwfHx8fA%3D%3D&w=1000&q=80" );
9
+ background-size : cover;
10
+ background-repeat : no-repeat;
11
+ color : white;
12
+ }
13
+
14
+
15
+ h1 {
16
+ text-align : center;
17
+ font-size : 60px ;
18
+ color : # ffea00 ;
19
+ text-shadow : 0 1px 0 # ccc,
20
+ 0 2px 0 # c9c9c9,
21
+ 0 3px 0 # bbb,
22
+ 0 4px 0 # b9b9b9,
23
+ 0 5px 0 # aaa,
24
+ 0 6px 1px rgba (0 , 0 , 0 , .1 ),
25
+ 0 0 5px rgba (0 , 0 , 0 , .1 ),
26
+ 0 1px 3px rgba (0 , 0 , 0 , .3 ),
27
+ 0 3px 5px rgba (0 , 0 , 0 , .2 ),
28
+ 0 5px 10px rgba (0 , 0 , 0 , .25 ),
29
+ 0 10px 10px rgba (0 , 0 , 0 , .2 ),
30
+ 0 20px 20px rgba (0 , 0 , 0 , .15 );
31
+ }
32
+
7
33
.container {
8
- width : 50 % ;
9
- height : 300 px ;
10
- margin : 0 auto;
11
- background-color : # 1DA1F2 ;
34
+ width : 65 % ;
35
+ height : 400 px ;
36
+
37
+ /* background-color: #30373b; */
12
38
border-radius : 10px ;
13
39
display : flex;
14
40
flex-direction : column;
15
41
justify-content : center;
16
42
align-items : center;
17
43
padding : 0 80px ;
44
+ margin : 30px auto;
18
45
box-shadow : 0px 2px 8px rgba (0 , 0 , 0 , 0.6 );
19
46
}
47
+ i {
48
+ font-size : 50px ;
49
+ margin-bottom : 10px ;
50
+ color : # 2d00f7 ;
51
+ }
20
52
21
53
# quotes {
22
54
text-align : center;
55
+ font-size : 40px ;
56
+ font-family : 'Lobster Two' , cursive;
57
+ color : # f20089 ;
58
+ }
59
+
60
+ hr {
61
+ width : 60% ;
62
+ /* border: 1px solid purple; */
63
+ margin : 10px 0 ;
64
+ }
65
+
66
+ # author {
67
+ font-family : 'Cormorant Garamond' , serif;
68
+ font-size : 20px ;
69
+ margin-bottom : 10px ;
70
+ color : rgb (7 , 255 , 7 );
71
+ }
72
+
73
+ button {
74
+ cursor : pointer;
75
+ border : none;
76
+ color : # ffe6a7 ;
77
+ background : rgb (0 , 179 , 179 );
78
+ font-size : 20px ;
79
+ padding : 10px ;
80
+ border-radius : 4px ;
81
+ box-shadow : 0px 2px 8px rgba (0 , 0 , 0 , 0.6 );
82
+ bottom : 5px ;
83
+ font-weight : bold;
84
+ }
85
+
86
+
87
+ @media screen and (max-width : 1180px ) {
88
+ .container {
89
+ height : 600px ;
90
+ width : 80% ;
91
+ }
23
92
}
24
93
94
+ @media screen and (max-width : 800px ) {
95
+ .container {
96
+ height : 700px ;
97
+ width : 90% ;
98
+ }
99
+ }
0 commit comments