@charset "UTF-8";
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 0;
}

.download a {
  font-size: 20px;
  color: blue;
}

.download {
  width: 200px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 5%;
  margin-bottom: 7.5%;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: aquamarine;
}

input {
  display: none;
}

label {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  width: 300px;
  height: 100px;
  background-image: linear-gradient(to right top, DarkCyan, cyan);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.5);
  border-radius: 50px 5px;
  color: red;
}
label::before {
  content: "выкл";
  font-size: 100px;
}

input:checked + label::before {
  content: "вкл";
  color: green;
}

input:checked + label {
  box-shadow: inset 0 0 5px 5px rgba(0, 0, 0, 0.5);
}

/*# sourceMappingURL=style.css.map */
