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

html {
  scroll-behavior: smooth;
}

html{

    scroll-padding-top:100px;

}

.logo{

    white-space:nowrap;

}

body {
  background: var(--bg-primary);
  color: var(--text-primary);

  font-family:
    Inter,
    Segoe UI,
    sans-serif;

  line-height: 1.8;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

section {
  padding: 100px 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
}

.nav-right{

    display:flex;

    align-items:center;

    gap:30px;

}

.menu-toggle{

    display:none;

    justify-content:center;

    align-items:center;

    width:50px;

    height:50px;

    border:1px solid var(--primary);

    background:transparent;

    color:var(--primary);

    border-radius:12px;

    font-size:28px;

    cursor:pointer;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .2s ease;

}

.menu-toggle:hover{

    background:rgba(0,255,230,.08);

    transform:scale(1.05);

}

.menu-toggle:active{

    transform:scale(.96);

}

html,
body{

    overflow-x:hidden;

}