-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
59 lines (56 loc) · 1.06 KB
/
main.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
body {
background-color: rgb(190, 223, 245);
text-align: center;
color: aliceblue;
font-size: large;
font-family: "Happy Monkey", system-ui;
background-image: linear-gradient(rgb(118, 115, 115),rgb(109, 109, 53));
}
h1, h2 {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: aqua;
text-shadow: 0 0 5px black;
}
h1 {
font-size: 60px;
}
.bg-img{
background-image: url("images/hero.jpg");
background-size: cover;
filter: blur(2px);
height: 500px;
margin: 0;
}
.bg-txt {
text-shadow: 0 0 5px black;
font-size: 30px;
color: white;
font-weight: bold;
top: 50%;
left: 50%;
position: absolute;
z-index: 2;
transform: translate(-50%, -100%);
padding: 20px;
width: 80%;
}
.grid {
display: grid;
grid-template-columns: auto auto;
}
.grid > div {
text-align: centre;
padding: 50px;
}
.grid img {
width: 300px;
height: 200px;
border-radius: 50%;
}
.footer {
text-align: center;
}
a {
text-decoration: none;
color: aqua;
}