-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (54 loc) · 921 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
61
62
63
64
* {
box-sizing: border-box;
}
body {
background-color: #9ac5dc;
font-family: 'Cormorant Garamond', serif;
text-align: center;
height: 100vh;
overflow: hidden;
margin: 0;
}
h1 {
font-size: 3rem;
font-style: italic;
font-weight: 700;
padding-top: 4rem;
}
p {
font-family: 'Quicksand', sans-serif;
font-size: 1.2rem;
padding: 2rem;
}
.sounds {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-around;
}
.btn {
background-color: #33658a;
border-radius: 5px;
border: none;
color: #fff;
width: 8.2rem;
margin: .9rem;
padding: 1.5rem;
font-size: 1.2rem;
font-family: inherit;
cursor: pointer;
}
.btn:hover {
opacity: 0.8;
}
.btn:focus {
outline: none;
}
#credit p {
font-size: 1.1rem;
padding-top: 7.5rem;
}
a {
color: #33658a;
text-decoration: none;
}