body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f0f0f0;
    transition: background 0.4s ease;
}

.color-generator {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.color-generator h1 {
    color: #f9b40c;
    margin-bottom: 20px;
}

.color-display {
    font-size: 24px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    transition: all 0.4s ease;
}

#generateBtn {
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    background: #f9b40c;
    color: #000;
    transition: all 0.3s ease;
}

#generateBtn:hover {
    background: #000;
    color: #f9b40c;
    transform: scale(1.05);
}
