@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --font-base: "Inter", sans-serif;
  --base-color: #202124;
  --border-color: #5f6368;

  --nav-logo-size: 22px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--base-color);
  color: white;
  font-family: var(--font-base);
}
body::-webkit-scrollbar {
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  background-color: rgb(77, 77, 77);
  border-radius: 1rem;
}
.navbar {
  background-color: var(--base-color);
  border-bottom: 1px solid var(--border-color);
  /* height: 60px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 32px 8px 24px;
}

.navbar-logo {
  display: flex;
  justify-content: start;
  align-items: center;
}
.navbar-logo img {
  width: 15%;
}
.navbar-logo h3 {
  font-size: var(--nav-logo-size);
}
.footer-account {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.footer-account img {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  cursor: pointer;
}

.link-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-top: 10px; */
  margin: 22px 10px;
  width: 15%;
}
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.4rem;
}
.footer-icon {
  font-size: 1.7rem;
  margin-right: 1rem;
}
.link-list li:last-child .footer-icon {
  margin-right: unset;
}
footer .footer-account p {
  color: #686868c2;
  font-weight: 600;
}
.main {
  display: flex;
}
@media (max-width: 600px) {
  .main {
    flex-direction: column;
    height: 100%;
  }
  body ::-webkit-scrollbar {
    display: none;
  }
  .account-info p {
    text-align: center;
    font-size: 11px;
  }
  .account-info {
    width: 300px;
  }
}

@media (max-width: 375px) {
  footer .footer-account p {
    width: 50%;
  }
}
