html {
  overflow-y: hidden;
}

#tokenholder {
  color: white;
}

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

/* The body background will be the color of the borders next to the game canvas */
body {
	margin: 0;
    padding: 0;
    background: #000;
}

/* Setting the canvas to be in the center */
#gameCanvas {
	display: block;
    margin: 0 auto;
	cursor: pointer;
}

* {
    font-family: "SquareFont","Arial","SansSerif";
}

.ad-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
}

.ad-banner {
  display: flex; flex-direction: row; justify-content: center; align-items: center;
}

.ad-closebtn {
  position: absolute;
  margin-right: 2%;
  margin-top: 2%;
  right: 0;
  top: 0;
  z-index: 9999;
  background-color: #fff;
  color: #000;
  font-size: 24px;
  border: 0;
}
