body {
  color: #000;
  background-color:#fff;
  margin: 0;
  padding: 0;
}

canvas {
  background-color:#000;
  display: block;
  margin: 0 auto;
  margin-top:25px;
  width: 85%;
  height: 85%;
  -webkit-box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.65);
          box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.65);
  position: absolute;
  right: 0;
  left: 0;
}

#controls {
	top: 25px;
    width: 250px;
    position: relative;
    float: left;
    left: 126px;
    border: 1px solid #808080;
    background: #CCC;
    -webkit-box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.65);
    box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.65);
    opacity: 0.95;
}

#intro, #reddit {
  width: 200px;
  font-size: 0.9em;
}

#intro {
  padding-bottom: 10px;
  font-weight: bold;
}

#reddit {
  padding-top: 20px;
}

#controls p {
  margin: 5px 0;
}

#controls label {
  display: inline-block;
  width: 130px;
  font-size: 0.9em;
}

#controls input {
  width: 70px;
  text-align: center;
}

#controls #submit, #controls #random, #controls #hide {
  margin-right: 1px;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
}

#controls #submit {
  width: 80px;
}

#controls #random {
  width: 70px;
}

#controls #hide {
  width: 50px;
  margin-right: 0;
}

#controls #shareLine {
  margin-top: 15px;
}

#controls #buttonsLine {
  margin-top: 15px;
}


.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}