@import url("variables.css");
@import url("fonts.css");

/* Pages */
@import url("./index/index.css");
@import url("./ezl/ezl.css");
@import url("./preferencies/preferencies.css");
@import url("./scan/scan.css");


/* Elements */
@import url("./elements/button.css");
@import url("./elements/text_field.css");

/* Partials */
@import url('./partials/mobile_footer_menu.css');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*box-shadow: 0 0 10px 0.4px rgba(0, 0, 0, 0.1);*/

/* Základ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Montserrat, sans-serif;
  line-height: 1.6;
  background: var(--light);
  color: var(--black);
  height: fit-content;
  max-height: 100dvh;
  width: fit-content;
  max-width: 100dvw;
}

.body_container {
  width: 100dvw;
  height: fit-content;
  padding-bottom: 3.5rem;
}


   


