body {
  cursor: default;
  padding: 0;
  border: 0;
  margin: 0;

  text-align: center;
  background-color: white;
  font-family: Helvetica, Verdana, Arial, sans-serif;
}

body,
canvas,
div {
  outline: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Remove spin of input type number */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

#Cocos2dGameContainer {
  position: absolute;
  margin: 0;
  overflow: hidden;
  left: 0px;
  top: 0px;
}

canvas {
  background: url(./preloader/background.jpg) no-repeat center;
}

a:link,
a:visited {
  color: #000;
}

a:active,
a:hover {
  color: #666;
}

p.header {
  font-size: small;
}

p.footer {
  font-size: x-small;
}

#splash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: url(./preloader/background.jpg) no-repeat center;
}

#logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: url(./preloader/logo-1.png) no-repeat center;
}

.progress-bar-frame {
  position: absolute;
  left: 50%;
  top: 70%;
  padding: 0px 35px 0px 75px;
  height: 78px;
  width: 463px;
  margin: 0 -284px;

  background: url(./preloader/progress-bar-background.png) no-repeat;
}

.progress-bar {
  position: absolute;
  height: 78px;
  width: 416px;
}

.progress-bar span {
  display: block;
  height: 78px;
  transition: width 0.4s ease-in-out;
  background: url(./preloader/progress-bar-fill.png) no-repeat;
}

h1 {
  color: #444;
  text-shadow: 3px 3px 15px;
}

#GameDiv {
  width: 1280px;
  height: 720px;
  margin: 0 auto;
  background: black;
  position: relative;
  border: 5px solid black;
  border-radius: 10px;
  box-shadow: 0 5px 50px #333;
}

/* Privacy Button styling */
.dropdown {
  display: inline-block;
  position: fixed;
  bottom: 12px;
  left: 12px;
  z-index: 10000;
}
.dropbtn {
  color: white;
  background-color: #296578;
  outline: none;
  border-style: solid;
  width: 100px;
  height: 40px;
  font-weight: 400;
  font-size: 20px;
  border-color: white;
}
.dropdown-content {
  font-family: sans-serif;
  display: none;
  position: absolute;
  bottom: 100%;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
  z-index: 1;
  color: #f1f1f1;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  background-color: #f1f1f1;
}
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
}
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}
