* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body{
  background: url('../assets/background/d-body_bg.jpg') no-repeat 0 0 #333;
  background-size: cover;
  font-family: 'Merriweather Sans', sans-serif;
  font-size: 12pt;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

header{
  position: sticky;
  background: #000;
  top: 0;
  z-index: 500;
  width: 100%;
  border-top: 3px solid #E42618;
  border-bottom: 1px solid #474747;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .website-logo {
  display: block;
  max-width: 100%;
  width: 200px;
  margin: 10px 0;
  position: relative;
}
header .website-logo img{
  width: 200px;
  position: relative;
  z-index: 2;
}

#consolePrint{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  color: black;
  font-size: 2rem;
}

#page{
  margin: 0 auto;
  /* max-width: 768px; */
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1{
  text-align:center;
  color: #fff;
  text-transform: uppercase;
}

#content{
  margin:0 auto;
  width:100%;
  display: flex;
  justify-content: center;
}

#phaserGame canvas{
  /* background-color: #FFA800; */
}

@media (min-width:1280px) {
  #page{
    max-height: 100vh;
  }
}
