html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: black;
    background-image: url("background.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    font-family: 'Moderustic', sans-serif;
  }
  
  h1 {
    font-size: 45pt;
    text-align: center;
  }
  
  .instructions {
    font-size: 14pt;
    text-align: center;
  }
  
  #selector {
    text-align: center;
  }
  
  #output {
    text-align: center;
    font-size: 25pt;
    margin: 1rem;
  }
  
  #heart, #spade, #club, #diamond, #probability {
    font-size: 15pt;
    text-align: center;
  }
  
  #log-container {
    max-height: 250px;
    overflow-y: auto;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    margin: 1rem auto;
    width: 80%;
  }
  
  #final {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #final li {
    padding: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1rem;
  }
  
  #final li.correct {
    color: #00ff88;
  }
  
  #final li.wrong {
    color: #ff5555;
  }
  