/* style.css */

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: radial-gradient(circle at center, #ffe29f, #ffa99f);
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #ff4e50;
    text-shadow: 2px 2px 8px rgba(255, 78, 80, 0.5);
    letter-spacing: 1.5px;
  }
  
  #result {
    font-size: 130px;
    margin-bottom: 30px;
    padding: 30px 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    box-shadow: 0 8px 40px rgba(255, 78, 80, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    animation: glowDice 2s infinite alternate;
  }
  
  @keyframes glowDice {
    0% {
      box-shadow: 0 0 20px rgba(255, 126, 95, 0.4);
    }
    100% {
      box-shadow: 0 0 35px rgba(255, 78, 80, 0.6);
    }
  }
  
  button {
    padding: 15px 45px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(to right, #ff6a00, #ee0979);
    border: none;
    border-radius: 60px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(238, 9, 121, 0.4);
    transition: all 0.3s ease;
  }
  
  button:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px rgba(255, 106, 0, 0.5);
  }
  
  
  
  
  