:root { --white: hsl(0, 0%, 100%); --light-blue: hsl(196, 100%, 89%); --darl-blue: hsl(197, 85%, 28%); --blue: hsl(197, 100%, 44%); --black: hsl(0, 0%, 0%); --dark-grey: hsl(0, 0%, 24%);}.bg-white { background-color: var(--white); }.text-white { color: var(--white); }.text-light-blue { color: var(--light-blue); }.text-darl-blue { color: var(--darl-blue); }.text-blue { color: var(--blue); }.text-black { color: var(--black); }.bg-dark-grey { background-color: var(--dark-grey); }