body, html, #app {
  margin: 0;
  width: 100%;
  height: 100%;
}
body{
  background: #031F48;
}
#app {
  overflow: hidden;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  text-shadow: 0 0 5px #000000, 0 0 20px #000;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

#app h1 {
  font-size: 50px;
  font-weight: 700;
}

#app a {
  margin-top: 10px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
}

#fish {
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
a.orangeBtn{
  letter-spacing: 4px;
  font-size: 20px;
  text-shadow: none;
  padding: 14px 40px;
  background: linear-gradient(to bottom, #e02a08, #faa701);
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0px 10px 16px #f60;
}
.orangeBtn:hover{
  background: linear-gradient(to bottom, #e02a08, #fff000);
  box-shadow: 0px 10px 16px #f90;
}
.copyright{
  font-size: 12px;
}