/* ? media queries to edit css responsiveness */

/* mobile */
/* @media (min-width: 320px) {
 
} */

/* landscape mobile */
/* @media (min-width: 568px) {

} */

/* tablet */
/*@media (min-width: 768px) {

} */

/* desktop */
/* @media (min-width: 1024px) {
 
} */

/* :root {
  --l: #FAF6F2;
  --d: #2B2B2B;
  --p: #F6B7B2;
  --b: #2F6F73;
  --y: #F2C94C;
} */

:root {
  --l: #FDFBFF;  /* soft off-white with lilac tint */
  --d: #3A3A3A;  /* softer dark grey */
  --p: #F7C6D9;  /* soft pink */
  --b: #A5DEE4;  /* turquoise pastel */
  --y: #E3DAF9;  /* soft lilac/purple */
}


/* ? Boxes content */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  /* border: 2px solid; */
}

html {
  scroll-behavior: smooth;
  scroll-padding: 10%;
}

body {
  overflow-x: hidden;
}

/* ? Separates content */
.section {
  margin-bottom: 2rem;
}

* {
  margin: 0;
  line-height: calc(1em + 0.5rem);
}

img, picture, video,  canvas, svg {
  display: block;
  max-width: 100%;
  user-select: none;
}





/* !controls responsive system */

/* mobile */
@media (min-width: 320px) {
  .container {
    max-width: 320px;
  }
}

/* landscape mobile */
@media (min-width: 568px) {
  .container {
    max-width: 568px;
  }
}

/* tablet */
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

/* desktop */
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
