@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body{
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #121624;
    margin: 0;
    background: #F6F7F9;
}

.container{
    width: 90%;
    max-width: 1256px;
    margin: 0 auto;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    height: 80px;
    border-bottom: 2px solid #F1F3F5;
}

header img{
    width: 180px;
}

.top-nav{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-nav li a{
    color: #121624;
    text-decoration: none;
    margin: 0 24px;
    font-weight: 500;
}

@media(max-width: 992px){
    .container{
        max-width: 767px;
    }

    .top-nav li a {
        margin: 0 10px;
    }

    header .logo img{
        width: 160px;
    }
}

@media(max-width: 767px){
    header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        margin: 15px 0;
    }
    .top-nav{
        margin: 15px 0;
    }
}

@media(max-width: 410px){
    .top-nav li:first-child a{
        margin-left: 0;
    }

    .top-nav li:last-child a{
        margin-right: 0;
    }

    .top-nav li a {
        margin: 0 4px;
        font-size: 14px;
    }
}