body {
  font-family: helvetica;
  background: #eee;
  text-align: center;
}

h1 {
  font-size: 1.5em;
}

form {
  margin-top: 2em;
}

.hide {
  position: absolute;
  left: -10000px;
}

label {
  display: inline-block;
  background: gray;
  margin: 25px;
  position: relative;
  width: 100px;
  height: 40px;
  line-height: 40px;
  border-radius: 2px;
  font-size: 1em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

#happy ~ .option-happy {
  cursor: url("pointer.ico"), auto;
}
#happy:checked ~ .option-happy {
  background: green;
}

#sad ~ .option-sad {
  cursor: url("right.ico"), auto;
}
#sad:checked ~ .option-sad {
  background: red;
}

#meh ~ .option-meh {
  cursor: url("bad.ico"), auto;
}
#meh:checked ~ .option-meh {
  background: orange;
}
