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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0b0b0b; /* Set the background color */
  font-family: "Inter", sans-serif; /* Default font */
  color: white;
  height: 100vh; /* Make sure the body takes up full height */
}

.navbar {
  width: 100%;
  height: 70px;
  background-color: rgb(21, 21, 21);
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 30px;
}

.navbar li {
  display: inline-block;
}

.navbar li a {
  text-decoration: none;
  color: white;
  font-family: "Archivo", sans-serif;
  font-weight: bold;
  font-size: larger;
}

.navbar li a:hover {
  color: rgb(54, 9, 93);
  transition: 0.2s;
}
