body{
    background-image: url(./img/bg.jpg);
    background-repeat: repeat;
   background-size: contain;
}
h1{
    font-size: 55px;
    font-family: monospace;
    text-align: center;
  margin-bottom: 20px;
  
}
h2{
    font-size: 25px;
    font-family: monospace;
    text-align: center;
  margin-bottom: 50px;
  
}


div {
        transition: transform .2s;
  
    margin: 0 auto;
}

div:hover {
    -ms-transform: scale(1.3);
    /* IE 9 */
    -webkit-transform: scale(1.3);
    /* Safari 3-8 */
    transform: scale(1.3);
    
}
#results div span{
    background-color: rgba(220, 229, 255, 0.529);
    padding: 5px;
    opacity: 0;
}
#results div:hover span {
   
    opacity: 1;
}