-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (75 loc) · 1.29 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
* {
box-sizing: border-box;
}
body, h1, h2, h3, h4, p, a {
margin: 0;
font-size: 100%;
font-weight: normal;
}
body {
font-family: 'Inter', sans-serif;
}
.header {
height: 100vh;
background-color: #eee;
background-image: url(cover.jpg);
background-size: cover;
background-position: center;
text-align: center;
}
.header-title {
font-size: 140px;
color: white;
text-transform: uppercase;
font-weight: 500;
/*padding-top: 100px;*/
margin: auto;
}
.overlay {
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, .5);
display: flex;
}
.content{
font-size: 0;
/*background-color: #8aafcf;*/
width: 790px;
margin: 100px auto 50px;
}
.card {
width: 350px;
/*background-color: #e3f3ff;*/
margin-bottom: 60px;
margin-right: 90px;
padding: 45px 45px 70px;
/*border: solid 2px rgba(250, 50, 50, .4);*/
display: inline-block;
box-shadow: 4px 4px 5px rgba(250, 50, 50, .4)
}
.no-right-margin {
margin-right: 0;
}
.card-title {
font-size: 24px;
font-weight: 500;
margin-bottom:10px;
}
.card-text{
font-size: 16px;
font-weight: 500;
}
.card-image{
width: 100%;
margin-bottom: 25px;
}
.footer{
height: 300px;
background-color: black;
display: flex;
}
.footer-author{
color: rgb(255, 255, 255);
font-size: 24px;
margin: auto;
}