-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
108 lines (100 loc) · 2.21 KB
/
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Tammudu+2&display=swap');
* {
font-family: 'Satisfy', cursive;
padding: 0;
margin: 0;
}
body {
background-color: black;
color: white;
}
.content1 {
padding: 20px;
padding-top: 100px;
margin: 0px;
background-image:linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(content1.jpg);
background-size: cover;
background-position: center;
height: 100%;
}
.content1 h {
font-size: 70px;
color: yellow;
}
.content1 p {
font-size: 20px;
font-family: 'Baloo Tammudu 2', cursive;
}
.content2 {
padding: 50px;
padding-top: 100px;
margin: 0px;
background-image:linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(content2.jpg);
background-size: cover;
background-position: center;
}
.content2 h {
font-size: 70px;
color: aqua;
}
.content2 p {
font-size: 20px;
font-family: 'Baloo Tammudu 2', cursive;
}
.content3 {
padding: 50px;
padding-top: 100px;
margin: 0px;
background-image:linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(content3.jpg);
background-size: cover;
background-position: center;
}
.content3 h {
font-size: 70px;
color: hotpink;
}
.content3 p {
font-size: 20px;
font-family: 'Baloo Tammudu 2', cursive;
}
.content4 {
padding: 50px;
padding-top: 100px;
padding-bottom: 100px;
margin: 0px;
background-image:linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)),url(content4.jpg);
background-size: cover;
background-position: center;
}
.content4 h {
font-size: 70px;
color: lawngreen;
}
.content4 p {
font-size: 20px;
font-family: 'Baloo Tammudu 2', cursive;
}
.content4 button {
background-color: transparent;
color: white;
font-size: 25px;
margin-top: 20px;
padding: 10px;
font-family: cursive;
border: 3px solid white;
border-radius: 50px;
transition-duration: 1s;
}
.content4 button:hover {
color: red;
background-color: white;
}
.ending {
background-color: dimgrey;
color: black;
}
.ending p {
font-family: monospace;
text-align: center;
}