body {
  background-color: rgb(134, 163, 200);
  margin: 0px;
}

pre {
  margin: 0px;
}

.title {
  font-size: 25px;
  font-family: Lucida Console, sans-serif;
  color: rgb(0, 113, 193);
  margin: 0px;
}

.text {
  font-size: 14px;
  font-family: sans-serif;
  margin: 0px;
  word-wrap: break-word;
}

#versionInfo {
  vertical-align: middle;
  margin-left: 8px;
}

#logo {
  padding: 20px 10px 10px 10px;
  background-color: rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid rgb(67, 128, 185);
  user-select: none;
  -webkit-user-select: none;
}

#fileZone, #createZone, #versionZone {
  background-color: rgba(0, 125, 255, 0.1);
  border-top: 3px solid rgb(67, 128, 185);
  border-bottom: 3px solid rgb(67, 128, 185);
  padding: 20px;
}

#versionZone {
  user-select: none;
  -webkit-user-select: none;
  padding: 10px;
}

#canvas {
  border: 3px solid rgb(67, 128, 185);
  display: none;
}

#downld, #submit2, #again {
  display: none;
}

#info2 {
  margin-bottom: 10px;
}

#file {
  margin-bottom: 15px;
}

/* -------- SWITCH FROM W3SCHOOLS -------- */

/* The switch - the box around the slider */

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
  vertical-align: middle;
}

/* Hide default HTML checkbox */

.switch input {
  display: none;
}

/* The slider */

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(170, 201, 237);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: #2196F3;
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
}