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

html {
    font-size: 62.5%;
    font-family: 'Roboto', sans-serif;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.header{
    z-index: 999;
    color: #18181A;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.nav-logo {
  width: 9.75rem;
  height: 2.125rem;
  flex-shrink: 0;
  background: url(../images/logo.webp) no-repeat;
  background-size: cover;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 3.5rem;
    box-sizing: content-box;
    padding: 2.69rem 5rem;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}

.nav-menu {
    gap: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link{
    font-size: 1.6rem;
    font-weight: 400;
    color: #475569;
}
.nav-link:hover{
    color: #035EEA;
}

.nav-logo {
    font-size: 2.1rem;
    font-weight: 500;
    color: #482ff7;
}

.user-menu {
    display: flex;
    align-items: center;
}
.login {
    border-radius: 2.875rem;
    background: #035EEA;
    color: #fff;
    padding: 1rem 2rem;
}
.login:hover{
    color: #fff;
}
.sign-up {
    border-radius: 2.875rem;
    padding: 1rem 1.6rem;
    color:#18181A;
    outline: 1px solid #9BA59E;
}
.sign-up:hover{
    color:#18181A;
}
