:root {
  --mobile-max: ;
}

/* body */

body.mk-simple-reset {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* ul */
ul.mk-no-bullets {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
}

ul.mk-basic-navbar {
  display: flex;
}
ul.mk-basic-navbar li {
  padding: 0 1em 0 1em;
}



.flex-vertcenter {
  display: flex;
  align-items: center;
}

.flex-justify-content-center {
  display: flex;
  justify-content: center;
}

/* footer */

.mk-footer { /* unset position if content is over 100vh */
  position: absolute;
  bottom: 0;
  width: 100%;
}

.mk-margin-top-4rem-neg {
  margin-top: -4rem !important;
}