diff --git a/README.md b/README.md
index e69869c..857dc63 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@
* Small - 4kB gzipped
* Fully customizable
* Keyboard, mouse, and touch support
-* Supports both [controlled and uncontrolled mode](https://react.dev/learn/sharing-state-between-components#controlled-and-uncontrolled-components)
+* Can be used in both [controlled and uncontrolled mode](https://react.dev/learn/sharing-state-between-components#controlled-and-uncontrolled-components)
## Getting started
@@ -39,7 +39,7 @@ const App = () => {
| `onKeyPress` | | Fired when a key is pressed. |
| `onKeyRelease` | | Fired when a key is released. |
| `onChange` | | Fired when active keys are changed via user input. |
-| `interactive` | `true` | Enable interaction with the piano via keyboard, mouse, or touch. |
+| `interactive` | `true` | Enable interaction with the piano via computer keyboard, mouse, or touch. |
| `keymap` | `DEFAULT_KEYMAP` | Mapping of computer keys to MIDI note numbers, e.g. `[{ key: 'q', midiNumber: 60 }, ..., { key: 'i', midiNumber: 72 }]` |
| `width` | `"auto"` | Width of the piano. Accepts any valid CSS value. When unspecified, the piano fills it's container and is responsive. |
| `height` | `"auto"` | Height of the piano. Accepts any valid CSS value. |
@@ -47,14 +47,59 @@ const App = () => {
| `blackKeyHeight` | `"67.5%"` | Height of the black key. Allows tweaking the appearance of black keys in relation to white keys. |
| `components` | | Allows replacing default components for black and white keys and adding a custom label to each key. |
+## Overview
-## Styling
+Klavier is primarily a visual keyboard library. While it can be easily connected to a sound engine for playback, its
+primary purpose is displaying the current state of the keyboard at a given moment, and notifying the consumer about changes
+to the states when keys are played or released.
-### Layout
-By default, Klavier is responsive takes up the full width of its parent container. This can be changed by using a combination of `width`, `height`, and `blackKeyHeight` props.
+## Interactivity
-### Appearance
-The visual appearance of the keyboard can be customized by specifying custom components for the black and white keys. This enables styling the keyboard with any approach.
+Klavier is interactive by default. It supports user input via computer keyboard, mouse, and touch.
+Interactivity can be completely or partially disabled.
+
+### Disabling interactivity
+```tsx
+