@import url('https://fonts.googleapis.com/css2?family=Product+Sans:wght@400;500;700&display=swap');

body {
    padding: 0;
    margin: 0;
    font-family: "Product Sans", sans-serif;
    overflow-x: hidden;
}

nav {
    padding: 0;
    margin: 0;
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
}

nav .navWrapper {
    max-width: 100%;
    padding: 0 .5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .navWrapper ul {
    list-style: none;
    padding: 0 1rem;
}

ul li a {
    text-decoration: none;
    font-weight: 500;
    color: rgba(0, 0, 0, .8);
    background-color: rgba(0, 0, 0, 0.1);
    border: .5px solid transparent;
    padding: .25rem .5rem;
    border-radius: 1rem;
    font-size: .7rem;
    transition: all .2s ease;
}

ul li a:hover {
    color: rgba(0, 0, 0, 1);
    background-color: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 0, 0, .3);
}

.navWrapper .logo {
    width: 80px;
    height: 80px;
}

.navWrapper .logo img {
    width: 150%;
    height: 150%;
    border-radius: 50%;
}

.flex-shrink-0 {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Remove redundant styles and use Tailwind classes instead */