@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
  background-color: #151515;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}

nav {
  position: sticky;
  top: 0;
  height: 60px;
  width: 100%;
  background-color: #262626;
  display: flex;
  align-items: center;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #262626;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #555555;
  transition: 0.2s;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #808080;
}

.web-title {
  margin: 0;
  margin-left: 20px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: white;
  font-size: 32px;
  text-decoration: none;
  transition: 0.5s;
}

.web-title:hover {
  color: #ff0000;
  transition: 0.2s;
}

.current-web-title {
  cursor: default;
  color: white;
}

.current-web-title:hover {
  cursor: default;
  color: white;
}

.links-container {
  position: absolute;
  right: 0;
}

.link {
  color: white;
  text-decoration: none;
  margin-right: 10px;
  transition: 0.2s;
}

.link:hover {
  color: #aaaaaa;
  text-decoration: none;
}

.current-link {
  color: #aaaaaa;
  cursor: default;
}

main {
  margin-bottom: -7px;
}

footer {
  background-color: #262626;
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: center;
}

footer p {
  margin: 10px;
}

.wip {
  margin: 0;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 60px;
}

.wip-image {
  object-fit: cover;
  width: 100%;
  height: 910px;
}