@font-face {
  font-family: monopoly;
  src: url(resources/fonts/Koch\ Regular.ttf);
}

* {
    box-sizing: border-box;
    margin:0;
    padding:0;  
    text-decoration: none;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10+ and Edge */
    user-select: none; /* Standard syntax */
}
  
body {
  color: white;
  font-family: 'Annie Use Your Telescope';

}

.menu-instructions a:link, a:active, a:visited {
  color: white;
}

a { color: white; } 

[id^="lang"] {
  color: white;
}

.header {
  background-color: #064789;
  font-size: 2em;
  font-weight: bold;
  height: 11vh;
  line-height: 10vh;
  text-align: center;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}

.header img {
  border-radius: 10%;
  height: 9vh;
  vertical-align: middle;
}

.footer{
  background-color: #064789;
  bottom: 0;
  font-size: 1vw;
  height: 5vh;
  left: 0;
  padding: 5px;
  text-align: center;
  position: fixed;
  width: 100%;
  
}

.column {
  background-color: #88AC67;
  float: left;
  height: 85vh;
  margin-right: .5%;
  overflow:auto;
  padding-bottom: 6vh;
  position: relative;
  width: 33%;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.column::-webkit-scrollbar {
  display: none;
}

div.column:nth-of-type(3) {
  margin-right: 0;
}

.columnheader {
  background-color: #679436;
  border: #88AC67 2px solid;
  display: block;
  font-size: 1.5vw;
  height: 5vh;
  line-height: 5vh;
  margin-bottom: 1vh;
  padding: 1px;
  position: relative;
  text-align: center;
  width: 100%;
}

.menu ul {
  margin: 0;
  padding: 0;
}
  
.menu li {
  list-style-type: none;
  margin-left: 1.5vw;
}

.chip {
  background-color: #064789;
  background: linear-gradient(-45deg, #06325e, #0f5ca8  );
  border-color: #064789;
  box-shadow: 
    12px 12px 16px 0 rgba(0, 0, 0, 0.25),
    -6px -6px 8px 0 rgba(255, 255, 255, 0.3);
  cursor: pointer;
  display: inline-block;
  padding: 0 25px;
  height: 50px;
  font-size: 25px;
  line-height: 50px;
  border-radius: 25px;
  margin: 10px 0 1px;
  width: auto;
}

.chip img, .chip-right img {
  border: #EBF2FA 3px solid;
  border-radius: 50%;
  float: left;
  height: 48px;
  margin: 1px 10px 0 -24px;
  width: 48px;
}

.chip-right img {
  float: right;
  margin: 1px -24px 0 1px;
}


.submenu {
  display: none;
  width: calc(100% - 75px);
}

.game a, .menu-howto, .menu-instructions a {
  background-color: #246195;
  border-color: #246195;
  border-radius: 25px;
  display: block;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  margin: 3px 50px 2px;
  padding-left: 25px;
  position: relative;
  width: 100%;
}

.menu-howto, .menu-instructions a {
  background-color: #6D98B8;
  border-color: #6D98B8;
  cursor: pointer;
}

.computer img, .tablet img, .phone img {
  border: transparent 3px solid;
  height: 48px;
  position: absolute;
  right: 95px;
  width: 48px;
  border-radius: 50%;
}

.tablet img {
  right: 48px;
}

.computer img {
  right: 1px;
}

button, [id^="buttonLanguage"] {
  background: #6D98B8;
  color: white;
  font-family: 'Annie Use Your Telescope';
  font-size: 1.2vw;
  height: 5vh;  
  position: absolute;
  right: 2vh;
  text-align: center;
  top: 3vh;
  width: 11vh;
}

[id^="buttonLanguage"] {
  left: 2vh;
}

#buttonLanguageEnglish {
  display: none;
}

#labelOther, #labelOther2 {
  padding-left: 3vw;
  font-size: 1.5vw;
}

#labelOther2 {
  margin-top: 1vw;
}


@media only screen and (max-width: 1150px) {
  .column {
    width: 49.75%;
    height: auto;
  }

  div.column:nth-of-type(2) {
    margin-right: 0;
  }
}
