-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (43 loc) · 834 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
49
* {
padding: 0;
margin: 0;
font-family: "poppins", sans-serif;
box-sizing: border-box;
}
.container {
width: 100%;
height: 100vh;
background: #ffe3e3;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.container img {
width: 75%;
height: 500px;
}
.container h1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: rgb(0, 0, 0);
font-size: 90px;
font-weight: 600;
letter-spacing: 3px;
}
.quotes {
width: 100%;
position: absolute;
text-align: center;
top: 110px;
color: rgb(0, 0, 0);
font-size: 20px;
font-weight: 500px;
}
.quotes h2 {
font-size: 45px;
margin-top: 10px;
font-weight: 500px;
}