/* Box Model Hack */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 20px;
  }
  
  /******************************************
  /* LAYOUT
  /*******************************************/
  
  body{
    background-image: url(../slot-machine-2019-week05/img/Luigi.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  h1, h2{
    text-align: center;
    clear: both;
  }
  
  h1{
    font-size: 5rem;
    color: red;
    text-shadow: gold 3px 2px;
  }
  
  h2{
    font-size: 4rem;
    color: red;
    text-shadow: gold 3px 2px;
  }

  .slots{
    display: flex;
    justify-content: center;
    
  }
  
  .slots img{
    display: block;
    height: 300px;
    float: left;
  }
  
  button{
    background: gold;
    color: red;
    padding: 10px 20px;
    font-size: 50px;
    border-radius: 5px;
    margin: 0 auto;
    display: block;
  }

  .score{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 19%;
  }
  
  
  /******************************************
  /* ADDITIONAL STYLES
  /*******************************************/
  