@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400&family=Sora:wght@200;300;400;500;600;700;800&display=swap');

html {
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  background-color: #191b22;
  background-image: linear-gradient(90deg, #191b22 0%, #191b21 100%);
  overflow-x: hidden;
  width: 100%;
}

.content {
  margin: 0px auto;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Manrope';
  min-height: 100%;
  color: white;
  margin: 32px;
}

.content a {
  all: unset;
  cursor: pointer;
  color: #00ffd1;
}

.content li {
  margin: 4px 0px;
}

header {
	position: sticky;
	top: 0;
  width: 100vw;
  background-color: transparent;
  padding: 32px 5rem;
  z-index: 999;
}
main {
	margin-top: 64px;
}

@media (max-width: 1024px) {
  main {
  }
}

@media (max-width: 767px) {
  main {
    margin-top: 64px;
  }
}

#logo {
  color: white;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
}
nav a {
  color: white;
  margin: 0 20px;
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  line-height: 26px;
  letter-spacing: -0.05em;
}

#ham-menu {
  display: none;
}

nav ul.active {
  right: 10px;
  z-index: 999;
}

.signup-btn {
  border: none;
  border-radius: 8px;
  color: #091314;
  background-color: #00ffd1;
  padding: 16px 24px;
  font-weight: 800;
  font-size: 17px;
  line-height: 21px;
  display: block;
  font-family: 'Sora';
}
.signup-btn2 {
  border: none;
  border-radius: 8px;
  color: #091314;
  background-color: #00ffd1;
  padding: 10px 24px;
  font-weight: 800;
  font-size: 17px;
  display: none;
  font-family: 'Sora';
  line-height: 21px;
}

/* -- Navbar responsive -- */
@media (max-width: 480px) {
  .signup-btn2 {
    padding: 8px 16px;
    font-size: 14px;
  }
  nav a {
    font-size: 16px;
    color: white;
    margin: 0 20px;
    font-family: 'Sora';
    font-style: normal;
  }
}

@media (max-width: 767px) {
  header {
    width: 100%;
    background-color: transparent;
    padding: 0px 2rem;
  }
  nav img {
    max-width: 110px;
  }
  #ham-menu {
    display: block;
    color: white;
  }
  .signup-btn {
    display: none;
  }
  .signup-btn2 {
    display: block;
  }

  nav ul {
    background-color: #1d1f28;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 22px;
    top: 50px;
    transition: all 0.5s ease;
    right: -150%;
    height: 270px;
    border-radius: 10px;
    padding-top: 30px;
    z-index: 1;
  }

  #nav-bar {
    display: none
  }

  #nav-bar a {
    margin-bottom: 50px;
  }
}


.fa-solid{
  vertical-align: 2px;
}