* {
    padding: 0;
    margin: 0;
  }
  
  html, body {
    height: 100%;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
  }
  
  canvas {
    background: rgb(211, 211, 211);
    display: block;
  }
  
  #tilesShown {
    margin-top: 10px; /* Add space between canvas and paragraph */
  }
  
  .dice {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 5px solid #333;
    border-radius: 10px;
    font-size: 3em;
    font-weight: bold;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #ddd;
}