-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
74 lines (64 loc) · 1.26 KB
/
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
65
66
67
68
69
70
71
72
73
74
@import url("https://fonts.googleapis.com/css2?family=Courgette&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Muli:wght@300;400&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.logo {
border-radius: 33px;
margin: 100px;
width: 250px;
}
nav {
height: 8vh;
background-color: #3E1C74;
}
.placard {
display: flex;
flex-direction: row;
justify-content: space-around;
max-width: 60%;
}
h1 {
margin-top: 180px;
font-family: Courgette;
font-size: 40px;
}
.btn-darkblue {
border: none;
background-color: #85A7FF;
padding: 20px;
font-size: large;
border-radius: 8px;
width: 300px;
text-decoration: none;
color: black;
font-family: muli;
text-align: center;
}
.btn-lightblue {
border: none;
background-color: #85DAFF;
padding: 20px;
font-size: large;
border-radius: 8px;
width: 300px;
text-decoration: none;
color: black;
font-family: muli;
text-align: center;
cursor: pointer;
}
.buttons {
display: flex;
flex-direction: row;
justify-content: space-around;
margin-top: 100px;
}
.btn-darkblue:hover {
background-color: #6791fd;
}
.btn-lightblue:hover {
background-color: #5acbfc;
}