@font-face {
  font-family: XPTahoma; /* set name */
  src: url(windows-xp-tahoma.otf); /* url of the font */
}

html {
  height: 100%;
}

body {
  margin: 0;
  max-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

#login {
  z-index: 10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#maincontent {
  padding-top: 30px;
  width: 100vw;
  height: 100vh;
}

.gamecontainer {
  opacity: 0;
  display:flex;
  align-items: center;
  justify-content: center;
  height: calc(576px / var(--dpr));
}

.panelcontainer {
  border: ridge 10px black;
  border-radius: 10px;
  box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.3);
}

.game {
  margin: 0;
  position: relative;
  display:flex;
  align-items: center;
  justify-content: center;
  width: calc(623px / var(--dpr));
  height: calc(575px / var(--dpr));
  overflow: hidden;
  background: #fff;

}

#game1 {
  position: absolute;
  top: -82px;
}

/* authors note */
/*.authorsnote {*/
/*  position: relative;*/
/*  height: 100%;*/
/*  background: #090909;*/
/*  margin-left: 10px;*/
/*  width: 200px;*/
/*}*/

/*#commentscontainer {*/
/*  padding: 10px; */
/*}*/

/*.comment {*/
/*  box-sizing: border-box;*/
/*  margin: 0;*/
/*  padding: 10px;*/
/*  border-radius: 4px;*/
/*  width: 100%;*/
/*  height: fit-content;*/
/*  background: #fff;*/
/*}*/
