@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");

body {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: black;
  color: white;
}

title {
  padding-top: 20%;
}

main {
  padding: 20px;
  overflow-wrap: break-word;
}

a {
  color: #74c7ec;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #89dceb; /* change to match your theme */
}

/* Scrollbar settings */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: black;
  border-radius: 3px;
  box-shadow: inset 0 0 5px grey;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
  transform: background 0.1s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
