/* =====================================================
   RESET.CSS

   Zerowanie domyślnych styli przeglądarki.

   Tutaj znajdują się:

   - *
   - html
   - body
   - img
   - picture
   - svg
   - button
   - input
   - textarea
   - ul
   - ol
   - a

   Czego NIE robimy?

   ❌ nie stylujemy sekcji
   ❌ nie stylujemy komponentów
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.menu-open {
  overflow: hidden;
}

html,
body {
  overflow-x: clip;
}
