* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
}

/* Tablets */
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
}

/* Small tablets and large phones */
@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
}

/* Phones */
@media (max-width: 768px) {
  html {
    font-size: 13px;
  }
}

/* Very small devices */
@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
}

/* outlet  */
.outlet-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow-x: auto;
  /* padding: 0px 0px 16px 16px; */
}
