body {
  margin: 0;
  border: 0;
  padding: 0;
  color: black;
  background-color: white;
  overflow-x: hidden;
}

h1, .titlePar {
  text-align: center;
  font-family: "Segoe UI",Arial,sans-serif;
  font-weight: normal;
  margin: 20px 0;
  font-size: 2em;
}

.h2Par {
  font-family: "Segoe UI",Arial,sans-serif;
  font-weight: normal;
  margin-top: 20px;
  font-size: 1.7em; 
  margin-bottom: 0; 
}

a {
  color: black;
}

.homeDiv {
  width: 45vw;
  height: auto;
  position: absolute;
  margin: 0 0 0 2vw;
  top: 40px;
  border: 2px solid black;                                                  
  border-radius: 5px;
  padding: 0 1vw 2em 1vw;
  background-color: white;
  transition: 0.2s;
  overflow: auto;
}

.homeDiv:hover {
  background-color: #f9f9f9;
}

.homeDivRight {
  margin-left: 51vw;
}

.sliderValueOutput {
  vertical-align: middle;
  font-size: 1.2em;
  margin-left: 2px;
}

.homeDivExplanation {
  margin-top: 35px;
  line-height: 1.3;
}

.playPar {
  font-size: 5em;
  text-align: center;
  margin: 60px 0 0 0;
  font-family: Trebuchet MS;
  cursor: pointer;
  color: black;                                                       
}

#settingsIcon {
  font-size: 2.2em;
  color: black;                                                                   
  cursor: pointer;                                                                                
  padding: 10px;
  position: absolute;
  top: 1vh;
  right: 1vh;                            
  background-color: white;
  border-radius: 10em;
}
  
#settingsIcon:hover {
  background-color: #eeeeee;
}

#settingsIcon:active {
  background-color: #e4e4e4;  
}

.hide {
  display: none;
}

#coverContentDiv {
  opacity: 0.3;
  background-color: black;
  width: 100vw;
  height: 100vh;
  margin: 0;
  border: none;
  padding: 0;
  top: 0;
  left: 0;
  position: absolute;
}

#settingsDiv {
  background-color: white;
  border: 0.3vh solid black;
  position: absolute;
  width: 40vw;
  height: 60vh;
  margin-left: 30vw;
  top: 20vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding-left: 0.6vw;
}

.settingsTitlePar {
  font-size: 1.8em;
  font-family: "Segoe UI",Arial,sans-serif;
  font-weight: normal;
  text-align: center;
}

#beforeArrows, #currentArrow {
  text-align: center;  
  margin: 0;
  border: none;
  padding: 0;
  font-size: 15vh;
}

#beforeArrows {
  color: #666666;
}

#currentArrow {
  background-color: black;
  color: white;
  padding: 3vh 0;
  margin-top: 3vh;  
}

#scoreDiv {
  position: absolute;
  top: 1vh;
  left: 1vw;
  font-size: 4vh;
}

#stopwatchDiv {
  position: absolute;
  top: 1vh;
  right: 1vw;
  font-size: 4vh;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.statsDiv {
  line-height: 1.6;
  margin-bottom: 1vh;
  overflow: auto;
//  height: 20vh;
}

.iconsDiv {
//  position: fixed;
  bottom: 19.7vh;
  width: 38vw;
  background-color: white;
  border: none;
  margin: 0;
  padding: 1vh 1vw;
  vertical-align: middle;
  -webkit-user-select: none; /* Safari */        
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
}

.icon {
  font-size: 3vw;
  color: black;
  cursor: pointer;
  padding: 3vh 7.2vw;
}

.icon:hover {
  background-color: #eeeeee;
}

.icon:active {
  background-color: #dddddd;  
}

.otherIcons {
  margin-left: 1vw;
}

.center {
  text-align: center;
}

.pointer {
  cursor: pointer;
}

#updateNames {
  line-height: 1.4;
  text-align: justify;
}

.dodgerBlue {
  color: dodgerBlue;
}

#turnOffSettings {
  width: 40vw;
  padding: 2vh 0;
  background-color: #fafafa;
  border: none;
  margin: 2vh 0 0 -0.5vw;
  cursor: pointer;
  border-radius: 3px;
  outline: none;
  text-align: center;
}

#turnOffSettings:hover {
  background-color: #f4f4f4;
}

#turnOffSettings:active {
  background-color: #e9e9e9;
}

form {
  margin-top: 0;
}

#noMarginBottom {
  margin-bottom: 5px;
}

.hide {
  display: none;
}
 

/* Slider stuff... */

input[type="range"] {
  width: 200px;
}

.slidecontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  height: 15px;
  border-radius: 2px;
  background: #d3d3d3;
  outline: none;
  opacity: 1;
  -webkit-transition: .1s;
  transition: .1s;
  vertical-align: middle;
}

.slider:hover {
  background: #c9c9c9;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 30px;
  border-radius: 3px;
  background: black;                                                
  cursor: pointer;
  opacity: 0.9;
  -webkit-transition: .1s;
  transition: opacity .1s;
}

.slider::-webkit-slider-thumb:hover {
  opacity: 0.95;
}

.slider::-webkit-slider-thumb:active {
  opacity: 1;
}

.slider::-moz-range-thumb {
  width: 15px;
  height: 30px;
  border-radius: 3px;
  background: black;
  cursor: pointer;
}

#sliderDivTwo {
  margin-top: 25px;
}
