body {
    font-family: sans-serif;
    background-color: #2323c8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .dice-container {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8 20px rgba(0,0,0,0.2);
  }
  
  h1 {
    margin-bottom: 1rem;
    color: #1e3a5f;
  }
  
  .dice-display {
    font-size: 8rem;
    margin: 1rem 0;
    min-height: 5rem;
}

.total-display {
    font-size: 3rem;
    margin: 1rem 0;
    min-height: 4rem;
    color: #1e3a5f;
  }

  input[type="number"] {
    width: 60px;
    font-size: 1rem;
    padding: 5px;
    margin-bottom: 1rem;
    border: 2px solid #1e3a5f;
    border-radius: 6px;
  }
  
  button {
    font-size: 1.2rem;
    padding: 10px 20px;
    background-color: #1e3a5f;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #144173;
}