-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (70 loc) · 1.3 KB
/
style.css
File metadata and controls
83 lines (70 loc) · 1.3 KB
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
* {
margin:0;
padding:0;
box-sizing: border-box;
}
html, body {
font-family: 'Outfit', sans-serif;
display: flex;
flex-direction: column;
height: 100vh;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex-grow: 1;
}
.logo {
display: block;
}
.social-icons a {
color: #FE5B3C;
font-size: 24px;
margin-right: 20px;
margin-top: -20px;
display: inline-block;
width: 40px;
height: 40px;
background-color: rgba(254, 91, 60, 0.1);
border-radius: 50%;
text-align: center;
line-height: 40px;
}
.social-icons {
display: flex;
justify-content: center;
margin-top: 20px;
display: flex;
justify-content: center;
margin-top: 50px;
}
.social-icons a:hover {
transform: scale(1.2);
transition: all 0.2s ease-in-out;
}
.fa-brands {
font-size: 24px;
margin: 0 0px;
}
h3 {
color: #CCE0F7;
text-align: center;
font-size:24px;
margin-bottom: 10px;
line-height: 1.7;
font-weight: normal;
text-align: center;
margin-top: 50px;
}
.footer {
padding: 30px 0;
background-color: #111A23;
text-align: center;
font-size: 18px;
color: rgb(162, 187, 211);
width: 100%;
z-index: 1;
flex-grow: 0;
}