﻿@charset "UTF-8";

/* font from /fonts/accid___.ttf */

@font-face {
  font-family: "Fradm";
  src: url("/fonts/Fradm.ttf") format("truetype");
}

/* This code sets the margin to 0 so that there is no extra space around the canvas.*/
body {
	margin: 0;
  background-color: rgb(0,0,0);
  font-family: "Fradm", sans-serif;
  overflow: hidden;
}
.canvas {
  position: absolute;
  left:0px;
  top:0px;
}

.canvas-a {
  position: absolute;
  left:0px;
  top:0px;
}

.canvas-b {
  position: absolute;
  left:0px;
  top:360px;
}

.canvas-c {
  position: absolute;
  left:0px;
  top:720px;
}
.hidden {
  display: none;
}
#startScreen {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #CEDFE0;
  color: black;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#img-logo {
  /* this should resize with the screen */
  max-width: 480px;
  max-height: 480px;
}
#splashScreen {
  position: absolute;
  left: 0px;
  top: 0px;
  display: none;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #CEDFE0;
  color: black;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#img-splash {
  max-width: 256px;
  max-height: 256px;
}
#startScreen button {
  padding: 10px 20px;
  font-size: 48px;
  color: black;
  background: none;
  font-family: "Fradm", sans-serif;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}
.buttonImage {
  z-index: 1;
  position:relative;
  left: 0px;
  top: 0px;
  width: 480px;
  height: 125px;
  background-size: 480px 125px;
  background-image: url("/img/buttonback.png");
}
.buttonText {
  z-index: 2;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 480px;
  height: 125px;
  opacity: 1;
  text-align: center;
  line-height: 125px;
  font-size: 48px;
}
.buttonImage:hover {
  background-image: url("/img/buttonfore.png");
}
.buttonText:hover {
  opacity: 0.7;
}


/* the game is natively 1920x1080, so we want to center it in the browser window */
#canvasContainer {
  overflow: hidden;
  position: relative;
  width: 1920px;
  height: 1080px;
}
#canvasWrapper {
  overflow: hidden;
  position: relative;
  width: 1920px;
  height: 1080px;
}