@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --font-family: "Poppins", sans-serif;
}

* {
    box-sizing: border-box;
    /* border: 1px solid lime; */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

ul, ol {
    list-style: none;
    padding: 0;
}

a {
    color: black;
    text-decoration: none;
}

header {
    display: flex;
    align-items: center;
    height: 90px;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-family);
    font-size: 25px;
}

.logo span {
    font-weight: 600;
}

/* .nav {

} */

.nav__list {
    display: flex;
    align-items: center;
    width: 584px;
    height: 50px;
}

.nav__item {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    color: #1b1a1a;
    margin: 32px;
}

.nav__button {
    width: 155px;
    height: 46px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.03em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1b1a1a;
    border-radius: 12px;
}