-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (49 loc) · 1015 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
.heading {
font-family: "Vollkorn", Times, serif;
text-transform: uppercase;
text-align: center;
line-height: 0.9;
}
h1 {
font-size: 30px;
margin-bottom: 0;
}
h2 {
font-size: 25px;
letter-spacing: 3px;
margin-top: 0;
}
div.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
width: 100%;
max-width: 1000px;
margin: 0 auto;
}
body {
background-color: #efedea;
overflow: hidden;
}
.corner-image {
position: fixed;
left: 0;
bottom: 0;
width: 200px;
height: auto;
max-width: 100%;
}
/* Media query for larger screen sizes */
@media screen and (min-width: 768px) {
.corner-image {
width: 300px; /* Adjust the width for larger screens */
}
}
/* Media query for even larger screen sizes */
@media screen and (min-width: 1200px) {
.corner-image {
width: 400px; /* Adjust the width for even larger screens */
}
}