@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #eee;
    color: #161616;
}

.navi-bar {
    display: flex;
    padding: 1rem 0;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    position: relative;
}

.navi-bar .right-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.navi-bar .right-nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
}

.navi-bar .right-nav ul li a {
    color: #161616;
    text-decoration: none;
}

    .navi-bar .right-nav ul li a:hover {
        text-decoration: underline;
    }

    .navi-bar .right-nav .quote {
        padding: 5px 20px;
        background-color: #219ebc;
        font-weight: 600;
        color: #eee;
        text-decoration: none;
        border-radius: 5px;
        transition: background-color .3s ease-in-out;
    }

        .navi-bar .right-nav .quote:hover {
            background-color: #6cd4ff;
        }

footer {
    padding: 2rem 0 4rem 0;
    border-top: 1px solid #161616;
}

    footer h4 {
        font-size: 1.3rem;
        font-weight: bold;
        color: #1d1d1d;
    }

    footer ul {
        list-style: none;
        padding: 0;
    }

        footer ul li a {
            text-decoration: none;
            color: #1d1d1d;
            display: flex;
            gap: 5px;
            align-items: center;
        }

        footer ul li a:hover {
            text-decoration: underline;
        }

        footer p {
            font-size: .8rem;
        }

#mobile-nav {
    font-size: 2rem;
    background: transparent;
    border: none;
}

.mobile-menu {
    display: none;
    padding: 1rem;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .mobile-menu ul li a {
        display: flex;
        padding: 10px 20px;
        background-color: #ddd;
        border-radius: 5px;
        color: #1d1d1d;
        text-decoration: none;
    }