@font-face {
  font-family: Pollock;
  src: url(fonts/PollockC1.ttf);
}

* {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
 font-family: Pollock;
 font-size: var(--text-size);
 background-color: var(--background-color);
 color: var(--text-color);
}

a {
  user-select: none;
}

a:visited, a:active {
  color: var(--visited-link-color);
}

.container {
  width: 100vw;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
}

#sketch {
  height: 95vh;
  width: 95vh;

  touch-action: none;
}

.footer {
  position: absolute;
  width: 100vw;
  bottom: 1vh;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.footer * {
  padding-left: 2vw;
  padding-right: 2vw;
}

#download {
  user-select: none;
  border: 2px solid #322f2b;
  border-radius: 4px;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  #sketch {
    height: 95vw;
    width: 95vw;
  }

  .footer {
    justify-content: center;
  }
}
