html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Inter";
  background: #ffffff;
  color: #111827;
}

.span-text {
  color: rgb(99, 252, 99);
}

header {
  background: #ffffff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: 900;
  font-size: 1.25rem;
  color: #0054fc;
}
.logo-a {
  text-decoration: none;
}

.hamicon {
  width: 25px;
  display: none;
  cursor: pointer;
}

nav {
  display: flex;
}
nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  margin-left: 2rem;
}
nav a:hover {
  color: #0054fc;
}
@media (max-width: 750px) {
  .hamicon {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 50px;
    right: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.192);
    border-radius: 3px;
    padding: 10px;
  }
  nav a {
    padding: 5px;
    margin-left: 0;
  }

  nav.show {
    display: flex;
  }
}
