summaryrefslogtreecommitdiff
path: root/style.css
blob: aa9af4d511fa3a65d787a4163507905f313ccdc4 (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
{
  padding: 0;
  margin: 0;
}
body {
  overflow-x: hidden;
}
canvas {
  width: 100vw;
  height: 100vh;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -9999;
}
#textbox {
  margin: 10vh auto 0 auto;
  background: rgba(255, 0, 0,0.8);
  border-radius: 30px/50px;
  padding: 5vh 2vw;
  width: 30vw;
}
h1 {
  text-align: center;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 300%;
  color: rgba(0, 255, 0,0.5);
}
p,ul {
  font-family: 'Asar', serif;
}
a {
  text-decoration: none;
}
a:visited {
  color: blue;
}