-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (50 loc) · 855 Bytes
/
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
body {
display: flex;
align-items: center;
flex-direction: column;
background-color: #210706;
}
#main {
display: flex;
flex-direction: column;
align-items: flex-start;
padding-top: 150px;
padding-left: 100px;
background-color: #210706;
}
h1 {
color: bisque;
font-family: 'Trebuchet MS';
}
a {
color: #ffe4c4;
}
p {
text-align: center;
color: bisque;
font-size: medium;
}
#main p {
width: 1000px;
color: #b1baaf;
font-size: large;
text-align: left;
}
ul {
display: flex;
align-items: center;
flex-direction: column;
color: bisque;
}
button {
width: 200px;
height: 50px;
background-color: #C36F09;
color: #000000;
margin-top: 10px;
text-align: center;
border-color: #C36F09;
}
#back-button {
margin-left: 35px;
}