body {
  background-color: #e9ecef;
  margin: 0;
  padding: 0;
  color: #061b8e;
  font-family: Verdana, Geneva, sans-serif;
}

mark {
    background-color: lightgray;
    color: black;
    border-radius: 15px 5px;
    width: 90%;
    border-width: 2px;
    border-color: black;
    border-style: solid;
    display: inline-block
}

a:link, a:visited, a:active {
    text-decoration:none;
}

.mobile-frame {
  width: 412px;
  height: 700px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

@media (max-width: 768px) {
  .mobile-frame {
	width: 100%;
	height: 100vh;
	border-radius: 0;
	box-shadow: none;
  }

  .center-container {
	padding: 0;
  }
}

.header {
  position: absolute;
  background-color: #061b8e;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  min-height: 40px;
  padding: 2px 2px;
  text-align: center;
  z-index: 10;
}

.main {
  position: absolute;
  background-color: #ffffff;
  top: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
  padding: 2px 2px;
}

.centro200x200{
    width:200px;
    height:200px;
    position:absolute;
    top:50%;
    left:50%;
    margin-top:-100px;
    margin-left:-100px;
}

.bordaJogo{
    border-radius: 9px 9px;
    width: 95%;
    border-width: 0px;
    border-color: #061b8e;
    border-style: solid;
}

/* Menu deslizante lateral */
.overlay {
    height: 100%;
    width: 0%;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: #061b8e;
    overflow: auto;
    transition: 0.4s ease;
}

th {
    color: #061b8e;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 0.8em;
}

.overlay-content {
    position: relative;
    top: 80px;
    width: 100%;
    text-align: left;
    margin-top: 15px;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 1.5em;
    color: #FFF;
    display: block;
    transition: 0.4s;
}

.overlay a:hover, .overlay a:focus {
    color: #32cd32;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 0px;
    font-size: 3em;
}

.overlay .homebtn {
    position: absolute;
    top: 20px;
    left: 0px;
    font-size: 3em;
}

/* Fim do menu deslizante lateral */

/* Menu deslizante horizontal */
div.scrollmenu {
    background-color: #009c3b;
    overflow: scroll;
    white-space: nowrap;
	overflow-y: hidden;
	left: 0;
	right: 0;
	width: 100%;
	padding: 0;
    margin: 0;
	display: block;
	position: sticky;
}

div.scrollmenu a {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px;
    text-decoration: none;
}

div.scrollmenu a:hover, a:focus, a:active {
    background-color: #32cd32;
    color: #1e4119;
}
/* Fim do menu deslizante horizontal */

/*Gráfico Chart.js*/
canvas {
	width: 100% !important;
	height: 400px !important;
}