diff --git a/guide/english/certifications/responsive-web-design/basic-css/cascading-css-variables/index.md b/guide/english/certifications/responsive-web-design/basic-css/cascading-css-variables/index.md
index ea63f0010e..3dbb58cd35 100644
--- a/guide/english/certifications/responsive-web-design/basic-css/cascading-css-variables/index.md
+++ b/guide/english/certifications/responsive-web-design/basic-css/cascading-css-variables/index.md
@@ -3,7 +3,7 @@ title: Cascading CSS Variables
---
## Cascading CSS Variables
-Cascading CSS variables officially called custom properties are entities which behave similarly to traditional variables. In that variables allow for data to be stored and updated to reflect new values later2.
+Cascading CSS variables (officially called custom properties) are entities which behave similarly to traditional variables, in that variables allow for data to be stored and updated to reflect new values later2.
CSS variables are defined to contain specific values and be reused throughout a document. They are set using custom property notation (e.g., `--main-color: black`) and are accessed using the `var()` function (e.g., `color: var(--main-color)`)1. Declare the CSS variable in the `:root` or `body` selectors for global access.