@import url("https://fonts.googleapis.com/css2?family=Karla:wght@400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::selection {
  background: #f59e0b;
  color: #fff;
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #f59e0b;
  border: 3px solid #f1f5f9;
  border-radius: 100vh;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: #da8d0a;
}

body {
  font-family: "Karla", sans-serif;
  min-height: 100vh;
  background: #f1f5f9;
  color: #26292b;
}

nav {
  display: flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  font-size: 1.5rem;
  justify-content: space-between;
  position: sticky;
  top: 0;
}
.f600 {
  font-weight: 600;
}
.f-2-5 {
  font-size: 2.5rem;
}
.logo {
  font-size: 2rem;
  font-weight: 500;
}
.full90 {
  min-height: 90vh;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.pageLink {
  text-decoration: none;
  background: #f59e0b;
  color: #f1f5f9;
  padding: 0.3rem 0.5rem;
  border-radius: 0.5rem;
  margin: 0 0.2rem;
}
section {
  margin-top: 1rem;
}
