-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (32 loc) · 764 Bytes
/
style.css
File metadata and controls
38 lines (32 loc) · 764 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
body {
font-family: 'Montserrat', sans-serif;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #121212;
text-shadow: 0px 2px 6px #000000;
}
h1 {
margin-top: 0;
color: #f0f0f0;
}
i {
color: #f0f0f0;
}
.box {
display: flex;
align-items: center;
flex-direction: column;
background-color: #545151;
padding: 90px;
-webkit-box-shadow: -1px 6px 34px 0px rgba(0, 0, 0, 0.75);
-moz-box-shadow: -1px 6px 34px 0px rgba(0, 0, 0, 0.75);
box-shadow: -1px 6px 34px 0px rgba(0, 0, 0, 0.75);
}
.buttonSubmit {
margin-top: 20px;
padding: 10px;
margin-bottom: 10px;
}