@font-face {
  font-family: font1;
  src: url(font1.otf);
}
@font-face {
  font-family: Soria-Bold;
  src: url(Soria-Bold.otf);
}

body {background-color: #123; color: white; margin: 0; padding: 0; overflow: hidden; font-family: font1;}
#canvas:focus { outline: none;background-color: #000;}
#canvas {
   outline: none;
   background-color: #000;
   width: 100%;
   height: 100%;
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  font-family: Soria-Bold;
}

.overlay-content {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.overlay table {
  margin: auto;
  padding: 8px;
  font-size: 22px;
  color: #fff;
  width: 800px;
  max-width: 90%;
  background-color: #1e1111;
  border-radius: 10px;
  border: 1px #972a2a solid;
}
.overlay input[type='text']{width: 96%; font-size: 22px; font-family: Soria-Bold;}
.overlay input[type='button']{
  background-color: #1e1111;
  border: 1px #972a2a solid;
  color: white;
  padding: 8px 32px;
  text-align: center;
  text-decoration: none;
  font-size: 30px;
  cursor: pointer;
  width: 150px;
  font-family: Soria-Bold;
}

.leaderboard-div{
  margin: auto;
  width: 800px;
  max-width: 90%;
  background-color: #1e1111;
  border-radius: 10px;
  height: calc(100vh - 100px);
  border: 1px #333 solid;
}
.leaderboard-div-scroll{
  overflow-y: scroll;
  height: calc(100vh - 150px);
}

.leaderboard-row{
  background-color: #1e1111!important;
  width: 100%!important;
  text-align: left;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px #333 solid;
}
.leaderboard-row td{
  background-color: #1e1111!important;
  border-right: 2px #333 solid;
  padding-left: 8px;
  color: white;
  font-size: 14px;
}
.leaderboard-row .time{
  text-align: right;
  border: 0;
}

.overlay-content .close{
  padding: 0!important;
  margin: 0!important;
  height: 50px!important;
  width: 150px!important;
  cursor: pointer;
}
