* {
    margin: 0;
    padding: 0;
}
@font-face {
  font-family: "Pixeled";
  src: url(https://cors-anywhere.herokuapp.com/https://wingsoffuhrich.000webhostapp.com/Pixeled.ttf) format("truetype");
}
body {
  background: url("https://static.pexels.com/photos/139306/pexels-photo-139306.jpeg");
}
.container-fluid {
  top: 10vh;
  border-radius: 250px;
  text-align: center;
  background-color: #212121;
  height: 450px;
  width: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 0 10px 5px black;
}

button:not(.modeButtons) {
  margin-left: 30px;
  flex-basis: 48%;
  height: 200px;
  width: 100%;
  margin: 5px auto;
}

button:hover {
  cursor:pointer;
}

button:focus {
  outline: none;
  transform: perspective(10deg);
}
.controller {
  position: absolute;
  background-color: #B0BEC5;
  margin: 0 auto;
  height: 275px;
  width: 275px;
  border-radius: 100%;
  border: 20px solid #212121;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.red {
  background-color: #F44336;
  border-color: #F44336;
  border-radius: 0 200px 0 0;
  margin-top: 10px;
}

.green {
  background-color: #4CAF50;
  border-color: #4CAF50;
  border-radius: 200px 0 0 0;
  margin-top: 10px;
}
.blue {
  background-color: #2196F3;
  border-color: #2196F3;
  border-radius: 0 0 200px 0;
  margin-top: -10px;
}

.yellow {
  background-color: #FFEB3B;
  border-color: #FFEB3B;
  border-radius: 0 0 0 200px;
  margin-top: -10px;
}
.row {
  width: 100%;
}

.simonText {
  font-weight: 900;
  font-size: 40px;
  font-family: 'Montserrat', sans-serif;
  color: black;
  flex-basis: 100%;
}

.reg {
  font-size: 20px;
}
.buttonRow {
  margin-top: -70px;
  z-index: 20;
}
.countField {
  border: 4px solid black;
  height: 40px;
  margin-left: 30px;
  margin-bottom: 40px;
  border-radius: 10px;
  background-color: darkred;
  font-weight: 900;
  font-size: 17px;
  font-family: "Pixeled", sans-serif;
  padding-left: 11px;
  padding-top: 3px;
  box-shadow: 1px 1px 1px black;
}

.modeButtons {
  height: 30px;
  width: 30px;
  margin-top: 5px;
  border: 3px solid black;
  border-radius: 100%;
}

.startButton {
  background-color: red;
  box-shadow: 0 0 4px 1px black;
}
.strictButton {
  background-color: yellow;
  box-shadow: 0 0 4px 1px black;
}
.strictLight {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  display: block;
  background-color: black;
  margin: -10px auto;
  margin-bottom: 0;
  border: 1px solid black;
}

.descriptionRow {
  position: absolute;
  padding-top: 20px;
  height: 0%;
  z-index: 15;
}

.countDescription {
  margin-left: 25px;
  font-weight: 900;
}

.startDescription {
  font-weight: 900;
  margin-left: 5px;
}

.strictDescription {
  font-weight: 900;
}

.powerRow {
  position: absolute;
  margin-top: 10px;
  margin-left: -35px;
  z-index: 15;
}

.powerSwitch {
  margin-top: 185px;
  font-weight: 600;
}
.off {
  position: absolute;
  margin-left: -30px;
  color: black;
}
.on {
  position: absolute;
  margin-left: 10px;
  color: black;
}
/*Code Below From W3Schools(modified)*/
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  display: none;
}

/* The slider */
.slider {
  border-radius: 3px;
  position: absolute;
  cursor: pointer;
  height: 20px;
  width: 50px;
  top: 0;
  left: 10px;
  right: 0;
  bottom: 0;
  background-color: black;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  border-radius: 3px;
  position: absolute;
  content: "";
  height: 15px;
  width: 20px;
  left: 4px;
  bottom: 2px;
  background-color: #2196F3;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: black;
}

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

input:checked + .slider:before {
  -webkit-transform: translateX(23px);
  -ms-transform: translateX(23px);
  transform: translateX(23px);
}
/* fixes bug, where margin is different on different browser*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .powerSwitch {
    margin-left: 10px;
  }
  .descriptionRow {
    margin-top: 50px;
    margin-left: -20px;
    font-weight: 900;
  }
}