:root {
  --d: rgb(14, 14, 14);
  --l: #D9D9D9;
  --g: #0C7510;
  --gr: #393737;

}

* {
  margin: 0;
  line-height: calc(1em + 0.5rem);
  font-family: 'alex', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

}

h2 {
  color: aliceblue;
}

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;
}

a {
  color: var(--d);
}

.container {
  width: 100vw;
  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);
}

/* ? Separates content */
.section {
  margin-bottom: 2rem;
}

@font-face {
  font-family: 'alex';
  font-style: normal;
  font-weight: 400; /* Regular */
  src: url('../font/Alexandria[wght].woff') format('woff');
}

@font-face {
  font-family: 'Alexandria';
  font-style: normal;
  font-weight: 700; /* Bold */
  src: url('../font/Alexandria[wght].woff') format('woff');
}


/* ? 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) {
 
} */


/* !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;
  }
}
