forked from ywalia01/iheard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
66 lines (59 loc) · 1.06 KB
/
index.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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Roboto", sans-serif;
}
html,
body {
background: #1d3354 center center no-repeat;
opacity: 0.879;
background-size: cover;
display: flex;
overflow: hidden;
color: black;
height: 100%;
width: 100%;
scroll-behavior: smooth;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
justify-content: center;
padding-top: 20px;
height: 100%;
width: 100%;
}
button {
text-transform: uppercase;
color: white;
padding: 7px 10px;
border-radius: 50px;
border: 2.5px solid white;
font-size: 18px;
font-weight: bold;
background: transparent;
transition: 0.4s ease-in-out;
margin: 50px 5px;
}
button:hover {
background: white;
cursor: pointer;
color: black;
}
a {
text-decoration: none;
color: inherit;
}
p {
color: #9ed8db;
font-size: xx-large;
}
#logo {
margin-bottom: 15px;
padding: 20px;
width: 600px;
height: 390px;
}