@font-face {
  font-family: "Koulen";
  src: url("./fonts/Koulen-Regular.ttf") format("truetype");
       
}


body {
  margin: 0px;
  background-color: #000000;
  font-family: "Koulen";
  /*background-color: #FF0000;*/
  overflow: hidden;
  text-align: center;
  align-content: center;
  align-items: center;
  vertical-align: middle;
}

#container {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: auto;
  
}



#container canvas, #overlay {
  
  display: block;
  position:absolute;
  
}

#overlay
{
  color:#1e1e1e;
  font-family: "Koulen";
  margin: auto;
  
  
}

#menu {
  display:none;
  user-select: none;
  font-size: 2.0em;
  font-family: "Koulen";
  width:200px;
  height:350px;
  margin: 50px;
  padding: 0.5em;
  border-style:solid;
  border-color: #000000;
  border-width: 20px;
  border-radius: 0px;
  background-color: #FFFFFF;
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
  
}

#tdiv {
  -ms-transform: rotate(2deg);
  transform: rotate(2deg);
}

.customdd {
  position: relative;
}

#resdrop 
{
  font-size: 0.75em;
  font-family:"Koulen" ;
  background-color: transparent;
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
  margin-top: 5px;
  margin-bottom: 10px;
}

#resdrop option
{
  background-color: transparent;
}


#exportbt {
  transition-duration: 0.25s;
  background-color:transparent;
  border-style:solid;
  border-color: #111111;
  border-width: 5px;
  font-family:"Koulen" ;
  font-size: 1.5em;
  color: #111111;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  padding: 10px 21px;
  cursor: pointer;
  /*height: 80px;*/
  margin-top: 5px;
  margin-bottom:10px;
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
}

hr {
  margin-top: 0px;
  -ms-transform: rotate(1deg);
  transform: rotate(1deg);
}

#exportbt:hover {
  background-color: #000000; 
  color:white;
}

#capture {
  margin-top:10px;
  
  line-height: 30px;
  vertical-align: middle;
  text-align: center;
}

#instructions {
  line-height: 1.25em;
}

#avert {
  font-size: 0.5em;
  line-height: 1.25em;
  -ms-transform: rotate(2deg);
  transform: rotate(2deg);
}

.cb {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 17px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
}

/* Hide the browser's default checkbox */
.cb input {
  
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

#autoCenter {
  margin: 0px;
}

/* Create a custom checkbox */
.checkmark {
  border-style: solid;
  border-width: 1px;
  border-color: #111111;
  margin-left: 10px;
  margin-top:-8px;
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: transparent;
}

/* On mouse-over, add a grey background color */
.cb:hover input ~ .checkmark {
  background-color: #000000 ;
}

/* When the checkbox is checked, add a blue background */
.cb input:checked ~ .checkmark {
  background-color: #111111;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.cb input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.cb .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}