body {
  background-color: hotpink;
  margin: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
}

#app {
  position: absolute;
  width: 50vh;
  max-width: 100vw;
  height: 100vh;
  max-height: 200vw;
}

#settings {
  width: 100%;
  height: 66.66666666666%;
  top: 16.66666666666%;
  position: absolute;
  background-color: black;
  color: white;
  opacity: 1;
  border-radius: 6.666666% / 5%;
  display: none;
  overflow-y: auto;
}

p {
  font-size: 200%;
  margin: 5%;
  margin-bottom: 0;
}

.slider {
  margin: 5%;
  margin-top: 0;
  margin-bottom: 0;
  width: 90%;
  height: 5%;
}

button {
  font-size: 150%;
  margin: 5%;
  margin-bottom: 0;
}


#screen {
  position: absolute;
  top: 0%;
  width: 100%;
  height: 16.66666666666%;
  display: block;
}
.screenimg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
#cc {
  position: absolute;
  top: 10%;
  left: 3.5%;
  width: 93%;
  height: 80%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: min(4vh, 8vw);
}
#speakericon {
  display: none;
}
#guessicon {
  display: none;
}


.button {
  width: 33.33333333%;
  position: absolute;
}
.x1 {
  left: 0;
}
.x2 {
  left: 33.33333333%;
}
.x3 {
  right: 0;
}
.y2 {
  top: 16.66666666666%;
}
.y3 {
  top: 33.33333333333%;
}
.y4 {
  top: 50%;
}
.y5 {
  top: 66.66666666666%;
}
.y6 {
  top: 83.33333333333%;
}




/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.switchslider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

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

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

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

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

/* Rounded sliders */
.switchslider.round {
  border-radius: 34px;
}

.switchslider.round:before {
  border-radius: 50%;
}