-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (38 loc) · 1005 Bytes
/
style.css
File metadata and controls
43 lines (38 loc) · 1005 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
41
42
43
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body,html {
height: 100%;
font-family: "Poppins", serif;
}
* {
box-sizing: border-box;
}
.bg-image {
background-image: url("background.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 100%;
}
.bg-text {
background-color: rgb(0, 0, 0);
background-color: rgb(0, 0, 0, 0.4);
color: white;
font-weight: bold;
border: 3px solid #f1f1f1;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
width: 80%;
padding: 20px;
text-align: center;
}
.btns button {
background-color: rgba(37, 59, 37, 0.733);
color: white;
height: 2.0rem;
width: 4rem;
margin: 1rem;
border-radius: 12px;
}