@require "functions"

load('icon')
load('wide')

body
  background: #1A2B34
  padding: 0
  margin: 0

#app
  height: 100vh
  width: 100vw
  display: flex
  flex-direction: column
  align-items: center
  justify-content: space-evenly

button
  border: solid 1px white
  padding: 10px 30px
  border-radius: 3px
  font-size: 1.5em
  font-weight: bold
  color: white
  background-color: transparent
  outline: none
  display: block
  margin: 10px
  opacity: 0.8
  transition: opacity .2s ease

  &:hover
    opacity: 1

  &:active
    transform: translateY(2px)
