html {
	background-image: url("https://aio.guru/landing.jpg");
	background-size: cover;
	font-family: "Comfortaa", sans-serif;
	width: 100vw;
	width: 100svw;
	height: 100vh;
	height: 100svh;
	font-size: 62.5%;
}
body {
	display: grid;
	place-items: center;
	width: 100vw;
	width: 100svw;
	height: 100vh;
	height: 100svh;
	cursor: url('https://aio.guru/zen.png'), auto;
}
h1 {
	font-size: 9em;
	font-family: 'Comfortaa';
	margin: 0 auto;
	padding: 0;
	text-align: center;
	color: #2D2643;
	mask-image: url("https://aio.guru/splatter-mask_1_1.png");
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}

#group {
  position: relative;
  margin: 60px auto;
  padding: 20px 20px 23px;
  border: 1px dashed rgba(0, 0, 0, .5);
  background-image: linear-gradient(top, rgba(255, 255, 255, .1), rgba(0, 0, 0, .1));
  background-color: #555;
  width: 340px;
  border-radius: 5px;
  box-shadow: 0 0 0 3px #555, -2px 3px 0px 2px rgba(0, 0, 0, .6), 2px -2px 0px 2px rgba(255, 255, 255, .6), -5px 5px 20px 0px rgba(0, 0, 0, .6);
}

#group:after {
  content: " ";
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 5px;
  border: 1px dashed #ffffff;
}

.switch {
  position: relative;
  border: 0;
  padding: 0;
  width: 333px;
  font-family: Comfortaa;
  font-weight: bold;
  font-size: 22px;
  color: #222;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .3);
}

.switch legend {
  float: left;
  width: 40%;
  padding: 7px 10% 3px 0;
  text-align: right;
}

.switch input {
  position: absolute;
  opacity: 0;
}

.switch legend:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: 50%;
  height: 100%;
  padding: 2px;
  background-color: #222;
  border-radius: 3px;
  box-shadow: inset -1px 2px 5px rgba(0, 0, 0, .8), 0 1px 0 rgba(255, 255, 255, .2);
}

.switch label {
  position: relative;
  z-index: 2;
  float: left;
  width: 25%;
  margin-top: 2px;
  padding: 5px 0 3px 0;
  text-align: center;
  color: #3f3f3f;
  text-shadow: 0 1px 0 #000;
  cursor: pointer;
  transition: color 0s ease .1s;
}

.switch input:checked + label {
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
}

.switch input:focus + label {
  outline: none;
}

.switch .switch-button {
  clear: both;
  position: absolute;
  top: -1px;
  left: 50%;
  z-index: 1;
  width: 25%;
  height: 100%;
  margin: 2px;
  background-color: #998877;
  background-image: linear-gradient(top, rgba(255, 255, 255, .2), rgba(0, 0, 0, 0));
  border-radius: 3px;
  border: 1px dashed rgba(0, 0, 0, .3);
  box-shadow: 0 0 0 3px #998877, -2px 3px 5px #3f3f3f;
  transition: all .3s ease-out;
}

.switch .switch-button:after {
  content: " ";
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 3px;
  border: 1px dashed #fff;
}

.switch input:last-of-type:checked ~ .switch-button {
  left: 75%;
}