/* ? 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: #E8E9F3;
  --d: #000000;
  --y: #EDC30D;
  --gr: #0E0E0E;
}


/* ? 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;
  background-color: var(--d);
  color: var(--l);
}

/* ? 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;
}

button {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-transform: uppercase;
  font-family:inherit;
}



/* !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;
  }
}
