/*
******************************
General CSS
******************************
*/

:root {
  --nunito-sans: "Nunito Sans", sans-serif;

  --nunito-sans-regular: 400;
  --nunito-sans-bold: 700;
  --nunito-sans-extra-bold: 800;

  --black: black;
  --baige: #e0dbd4;
  --background: #e0dbd4;
}

html {
  font-family: var(--nunito-sans);
  font-weight: var(--nunito-sans-regular);
  /* 18px Base Font Size on 1920px Screen */
  font-size: clamp(1.125rem, 0.9495vw, 100rem);
}

body {
  background-color: var(--background);
  margin: 0px;
  padding: 0px;
}

/* Scrollbar */

body::-webkit-scrollbar {
  display: none;
}

body {
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  scrollbar-color: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
td {
  margin: 0px;
  padding: 0px;
}

/*
******************************
Responsive
******************************
*/

/* Laptop L */

@media (min-width: 1440px) {
}

/* Laptop */

@media (min-width: 1024px) {
}

/* Tablet */

@media (min-width: 768px) {
}

/* Mobile L */

@media (min-width: 425px) {
}

/* Mobile M */

@media (min-width: 375px) {
}

/* Mobile S */

@media (min-width: 320px) {
}
