/* All GUI markup for the Case and game graphics - Version:	v01 */

/* ========================= HTML & BODY ==================================== */

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
body {
  background-color: #000000;
  color: #ccc;
  font-family: 'Retro';
  font-size: 0.7rem;
}
* {
	box-sizing: border-box;
}

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

.scanlines {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
 .scanlines::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 4px, 4px 100%;
  pointer-events: none;
}

/* ========================= Standard Tags ================================== */

input {
  border: 0;
  background-color: #333;
  width: 80px;
  color: #eee;
  text-align: right;
  margin: 0 0 0 10px;
  font-family: 'Retro';
}

/* ========================= Start Menu ===================================== */

.start_menu {
  clear: both;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.start_menu button {
  background-color: rgba(0,131,255,0.1);
  border: 1px solid #0083ff;
  color: #bbb;
  font-family: 'Retro';
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 10px;
  height: 40px;
  width: 250px;
  margin: 15px auto;
  padding: 5px;
	cursor: pointer;
}
.start_menu button:focus {
  outline: 0;
  background-color: rgba(0,131,255,0.2);
  border: 3px solid #0083ff;
  color: #ccc;
}
.start_menu button:hover {
  background-color: rgba(0,131,255,0.3);
}

/* ========================= Game Area ====================================== */

#gamecoreScreen {
  position: relative;
  width:  100%;
  height: 100%;
}

#startScreen {
  position: relative;
  padding-top: 150px;
  width:  100%;
  height: 100%;
  background-image: url("./title.png");
  background-repeat: no-repeat;
  background-size: cover;
}

#gameoverScreen {
  position: relative;
  padding-top: 300px;
  width:  100%;
  height: 100%;
}

#scanlines {
  position: absolute;
  width:  100%;
  height: 100%;
	background-image: repeating-linear-gradient(transparent 0px, transparent 1px, rgba(0, 0, 0, 0.4) 2px, rgba(0, 0, 0, 0.4) 2px);
}

#game {
  position: absolute;
/**/
  width:  100%;
  height: 100%;
/**/
  image-rendering: pixelated;
  background-color: #14182d;
}
