-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
46 lines (40 loc) · 781 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Roboto', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f5ebe0;
/* width: 100vw; */
}
.body-container {
width: 50vw;
text-align: center;
}
.body-container h2 {
color: #264653;
}
.button-container {
display: flex;
justify-content: space-evenly;
flex-wrap: wrap;
align-items: center;
margin-top: 50px;
}
.button {
text-decoration: none;
color: white;
background-color: #1d3557;
padding: .6em 2em;
border-radius: .5em;
margin: 10px 10px;
display: flex;
justify-content: center;
align-items: center;
}