body{
    margin: 0;
    background-color:#333333;
}
#body{
    margin:0;
    background-color:#333333;
    height:100vh;
    justify-content: center;
    align-items:center;
    display:flex;
    flex-direction: column;
    transition: ease 0.3s background-color ;
}
.button{
    background-color:#676767;
    border: 2px black solid;
    padding: 10px 15px;
    border-radius: 12px;
    margin:10px 5px ;
    display: inline-block;
  	text-decoration: none;
  	font-size: 16px;
  	color: black;
}
#jew{
    padding: 0;
    border:none;
    background: none;
    position: relative;
    height: 150px;
    width: 150px;
}
#baseball-bat{
    position: absolute;
    top: -40px;
    left: -80px;
    z-index: 10;
    transform-origin: left bottom;
    transform: rotate(0deg);
    transition: transform 0.1s ease;
}
#jew-pic{
    display: block;
    height: 150px;
    width: 150px;
    transition: height 0.1s ease;
    position: absolute;
    bottom: 0;  
}
#points{
    font-size: 50px;
}
#time{
    position: fixed;
    top:15px;
    left:15px;
    font-size: 30px;
}
#game{
    display:none;
}
#main{
    font-size: 50px;
}
#gameOver{
    display: none;
    font-size: 50px;
}
#changelog{
    background-color: #676767;
    width: 700px;
}

.theme{
  margin: 20px;
  position: fixed;
  right:20px;
}



/* From Uiverse.io by Madflows */ 
.toggle-switch {
  position: relative;
  width: 100px;
  height: 50px;
  --light: #d8dbe0;
  --dark: #28292c;
  --link: rgb(27, 129, 112);
  --link-hover: rgb(24, 94, 82);
}

.switch-label {
  position: absolute;
  width: 100%;
  height: 50px;
  background-color: var(--dark);
  border-radius: 25px;
  cursor: pointer;
  border: 3px solid var(--dark);
}

.checkbox {
  position: absolute;
  display: none;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.checkbox:checked ~ .slider {
  background-color: var(--light);
}

.slider::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  -webkit-box-shadow: inset 12px -4px 0px 0px var(--light);
  box-shadow: inset 12px -4px 0px 0px var(--light);
  background-color: var(--dark);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.checkbox:checked ~ .slider::before {
  -webkit-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
  background-color: var(--dark);
  -webkit-box-shadow: none;
  box-shadow: none;
}
