:root {}

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

html,
body {
  background-color: #000;
  height: 100vh;
  min-height: 100vh;
}

body {
  overflow: hidden;
}

.column {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  width: 100vw;
}

.row .col {
  flex: 10000 1 0%;
  width: auto;
  max-width: 100%;
  text-align: center;
}

.row .col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  text-align: center;
}

.content {
  height: 100vh !important;
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sidebar {
  display: none;
}
.ad-slot {
  width: 100%;
  height: 100%;
}
.ad-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
}

@media (min-width: 1024px) {
  .sidebar {
    display: block;
    width: 300px;
    height: 100vh;
  }
}
/* removed ad layout styles */

/* Game specific styles */

canvas {
  margin: 0px !important;
  display: block !important;
  outline: none;
  user-select: none;
  width: 100% !important;
  height: 100% !important;
}
