@font-face {
  font-family: StarTrek;
  src: url(stf.ttf);
}

body {
  color: white;
}

#drawspace {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.results {
  display: flex;
  flex: 1;
}

.result {
  display: flex;
  flex: 1;
  background-color: white;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  border: 1px solid;
  border-radius: 5px;
  margin: 10px 10px;
  color: black;
}

.logo {
  height: 50px;
  padding: 0 10px;
}

h2 {
  border-bottom: 1px dashed #777;
}

h1 {
  font-family: StarTrek;
  font-size: 5em;
  text-align: center;
}

#backgroundContainer {
  background-color: #000;
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}

#footer {
  font-size: 3em;
  color: #ddd;
  border-top: 2px solid #333;
  font-family: StarTrek, sans-serif;
  margin-top: 60px;
  height: 60px;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-around;
  text-transform: capitalize;
  background-color: rgba(0, 0, 0, 0.6);
}

#footer a {
  color: #ddd;
  text-decoration: none;
}

#footer a:hover {
  color: #fff;
  text-decoration: underline;
}

button {
  padding: 10px;
  font-size: 1.2em;
}
