
/* Browser style reset*/
html, body, div, span,
h1, h2, h3, h4, h5, h6, p,
a, img, strong, em, b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
header, footer, main, nav, section, article, aside {
    margin:0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    box-sizing: border-box;
}
ol, ul {
    list-style: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
input, button, textarea, select {
    font: inherit;
    color: inherit;
    border: none;
    outline: none;
    box-shadow: none;
}
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* GLOBAL STYLE */
body{
    font-family: 'Inter', sans-serif;
}

/* NAV */
.nav-tools .logo a{
    color: white;
    text-decoration: none;
    font-size: 24px;
}

.nav-tools .logo a:hover{
    color: black;
}

.nav-tools .search-bar button{
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    padding: 0 40px;
    border-radius: 0 5px 5px 0;
}

.nav-tools .icons{
    display: flex;
    gap: 20px;
}

.nav-tools .icons .user{
    display: flex;
    margin-left: 15px;
}
.nav-tools .icons .user img{
    height: 100%;
}

.nav-tools .icons .user div{
    display: grid;
    place-items: center start;
    gap: 5px;
    margin-left: 5px;
}
.nav-tools .icons .user div a{
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}
