body {
    background-color: #03223b;
    color: #040404;
    margin: 0;
    padding: 0;
  }
.randomizer {
    width: 90%;
    max-width: 400px;
    margin: 70px auto;
    padding: 40px;
    background-color: #c6dded;
    border: 1px solid #a5cae1;
    border-radius: 5px;
    text-align: center;
  }
  
  h1 {
    font-size: 24px;
  }

  .input-field {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #83b4d9;
    border-radius: 4px;
  }
  
  .button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    background-color: #8ba0f1;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #080949;
  }
  
  .dice {
    width: 100px;
    height: 100px;
    background-color: #bea2ea;
    border: 2px solid #c5f7db;
    border-radius: 5px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: #0f0e0e;
    transition: transform 0.5s ease;
    overflow: hidden;
  }
  .dice span {
    display: block;
    max-height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .result {
    font-size: 18px;
    font-weight: bold;
  }
  