• Media Queries

    @media screen and (max-width: 768px) {
      body {
        font-size: 14px;
      }
    }
    

    media types (all, print, screen) and logical operators (and, or, not, only)

  • CSS Variables

    :root {
      --primary-color: #007bff;
    }
    button {
      background: var(--primary-color);
    }