-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (40 loc) · 719 Bytes
/
style.css
File metadata and controls
40 lines (40 loc) · 719 Bytes
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
body {
background-color: #f2f2f2;
}
.container {
width: 100%;
height: 100%;
}
.wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
margin: 20px 0 20px 0;
background-color: #fff;
border-radius: 10px;
padding: 5vw;
}
h1 {
font-family: "Philosopher", sans-serif;
font-weight: bolder;
margin: 0;
padding: 0;
font-size: 4vw;
}
.p1 {
font-family: "Poppins", sans-serif;
font-weight: bold;
padding: 0;
font-size: 3vw;
}
.p2 {
font-family: "Poppins", sans-serif;
padding: 0;
font-size: 3vw;
}
.wrapper:hover {
background-color: black;
color: white;
}