body {
    font-family: helvetica;
    background: #eebcbc;
    text-align: center;
    padding: 0;
  }
  
  h1 {
    font-size: 1.5em;
    color: blueviolet;
    font-family: 'Neonderthaw', cursive;
  }
  
  h2{
    font-style: italic;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #666; 
    border: 2px solid black;
  }
  
  .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);
  }
  
  .option-happy {
    cursor: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/9632/happy.png"), auto; 
    
    background: green;
  }
  
  
  .option-sad {
    cursor: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/9632/sad.png"), auto;
    background: red;
  }
  
  
  .option-meh {
    cursor: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/9632/meh.png"), auto;
    background: orange;
  }
  
  input:checked ~ .option-meh {
    background-color: red;
  }
  
  .boxtxt {
    width: 60%;
    border: 2px solid rgb(0, 0, 0);
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
    margin-top: 15px;
    text-align: center;
    background: linear-gradient(0deg,rgba(179, 219, 252, 0.4) 0% , rgba(148, 163, 232, 0.5) 90%); 
    
  .blink {
    animation: blink 5s infinite;
  }
  
  @keyframes blink { 
    0% { color:rgb(0, 242, 0); }
    50% { color:aqua; } 
    100% { color:orange; }
  }