summaryrefslogtreecommitdiff
path: root/src/app.css
blob: 227035fb0e399606a40449c7296b2c8b201820ee (plain)
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
:root {
  font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  margin: 0;
  width: 100%;
  min-height: 100vh;
}

#app {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #F2F6F5;
  z-index: 10;
}

input[type="submit"] {
  width: 100%;
  font-size: 20px;
  margin-top: 20px;
  background-color: #05345f;
  font-weight: 700;
  color: white;
  padding: 10px;
  -webkit-appearance: none;
  border-radius: 0;
}

input[type="submit"]:hover {
  cursor: pointer;
  background-color: black;
  color: white;
}