html, body {
	  width: 100%;
	  height: 100%;
	  margin: 0;
	  padding: 0;
	  background: #000000;
	}
	
	html {
	  box-sizing: border-box;
	}
	
	.container {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  height: 100vh;
	}
	
	.jar {
	  width: 500px;
	  height: 250px;
	  background-color: transparent;
	  padding: 1%;
	  border-radius: 30% 30% 35% 35%;
	  position: relative;
  	}
	
	.jar-lid {
	  width: 80%;
	  height: 5%;
	  left: 50%;
	  position: absolute;
	  transform: translateX(-50%);
	  background-color: #e8f7f9;
	  top: -2%;
	  border-radius: 15px;
	  border-bottom: 1px solid #eee;
	}
	
	.jar-lid:before {
	  content: " ";
	  position: absolute;
	  right: 0;
	  left: 0;
	  top: 105%;
	  height: 70%;
	  background-color: #e8f7f9;
	  border-bottom: 1px solid #eee;
	  border-radius: 5px 5px 0 0;
	}
	
	.jar-lid:after {
	  content: " ";
	  position: absolute;
	  right: 0;
	  left: 0;
	  height: 90%;
	  bottom: 100%;
	  background-color: #e8f7f9;
	  border-radius: 2px 2px 5px 5px;
	  border-bottom: 1px solid #eee;
	}
	
	.jar-bottom {
	  width: 50%;
	  height: 5%;
	  left: 50%;
	  position: absolute;
	  transform: translateX(-50%);
	  background-color: #e8f7f9;
	  bottom: -1%;
	  border-radius: 20px;
	  border-bottom: 1px solid #eee;
	}
	
	
	.light {
	  height: 50%;
	  width: 8%;
	  background: white;
	  z-index: 2;
	  position: absolute;
	  border-radius: 10px;
	  left: 11%;
	  top: 50%;
	  transform: translateY(-50%);
	  opacity: 0.5;
	}
	
	.water {
	  background-color: #0002d9;
	  position: absolute; 
	  perspective: 300px;
	  border-radius: 35%;
	  bottom: 20px;
	  top: 20px;
	  height: 100%;
	  width: 90%;
	  left: 50%;
	  z-index: 0;
	  transform: translateX(-50%);
	  
	}
	
	.fish {
	  width: 90px;
	  height: 50px;
	  position: absolute;
	  left: 41%;
	  top: 40%;
	  animation: 5s ease circle infinite;
	}
	
	.fish .body {
	  background-color: #f03e3e;
	  width: 30px;
	  height: 30px;
	  position: absolute;
	  border-radius: 50% 0 50% 10px;
	  top: 0;
	  right: 25%;
	  transform: rotateZ(45deg);
	  box-shadow: inset -4px -3px rgba(0,0,0,.1);
	}
	
	.fish .tail {
	  width: 0px;
	  height: 0px;
	  border-width: 15px 20px 15px 0;
	  border-color: transparent #f03e3e;
	  border-style: solid;
	  position: absolute;
	  top: 0;
	  right: 0;
	}
	
	@keyframes circle {
	  0% {
		transform: rotateY( 0deg) translateZ(125px);
	  }
	
	  90%,100% {
		transform: rotateY(-360deg) translateZ(125px);
	  }
	}
	
	div.lightbulb,
	.fish input {
	  position: absolute;
	  appearance: none;
	  -moz-appearance: none;
	  -webkit-appearance: none;
	  width: 10px;
	  height: 10px;
	  border-radius: 50%;
	  left: 50%;
	  top: 40%;
	  transform: translate(-50%, -50%);
	  box-shadow: 0 0 0px 10px white;
	  background: white;
	  transition: all 0.5s ease-in-out;
	}
	
	div.lightbulb::before {
	  position: absolute;
	  content: "";
	  width: 10px;
	  border-top: 19px solid white;
	  border-left: 10px solid transparent;
	  border-right: 10px solid transparent;
	  left: -10px;
	  top: 10px;
	  transition: all 0.5s ease-in-out;
	}
	
	div.lightbulb::after {
	  position: absolute;
	  content: "";
	  width: 10px;
	  height: 3px;
	  background: grey;
	  top: 30px;
	  left: 50%;
	  transform: translateX(-50%);
	  border-radius: 15px;
	  box-shadow: 0px 5px 0 0 grey, 0px 10px 0 0 grey;
	}
	
	div.lightbulb+span::before {
	  content: "";
	  position: absolute;
	  height: 3px;
	  width: 7px;
	  background: grey;
	  top: 40px;
	  left: 50%;
	  transform: translateX(-50%);
	  border-bottom-left-radius: 50px;
	  border-bottom-right-radius: 50px;
	  z-index: 1;
	}
	
	.fish input, input:focus {
		z-index: 1;
	  outline: unset;
		border: none;
	}
	
	.fish input:checked {
	  background: #ffe770;
	  box-shadow: 0 0 0 10px #ffe770, 0 0 150px 10px #ffcd00;
	  transition: all 0.5s ease-in-out;
	}
	
	.fish input:checked + div.lightbulb::before {
	  border-top-color: #ffe770;
	  transition: all 0.5s ease-in-out;
	}