@import url('../config/colors.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  outline: none;
  text-decoration: none;
  border: none;
  list-style: none;

  font-family: 'Poppins', 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
}

a,
button {
  cursor: pointer;
}

a {
  color: var(--black9);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  border-radius: 0 0.3rem 0.3rem 0;

  background: var(--black5);
}

::-webkit-scrollbar-thumb {
  border-radius: 1rem;

  background: var(--blue9);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--black9);
}

main {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1080px) {
  html {
    font-size: 93.75%;
  }
}
