nav {
    padding-top: 2rem;
    padding-bottom: 1rem;
    .logo {
        img {
            width: 100%;
            object-fit: scale-down;
        }
        @media (max-width: 600px) {
            img {
                width: 100%;
            }
        }
    }
    a {
        font-weight: bold;
        text-decoration: none;
        color: var(--text-color);
        font-size: 0.75rem;
        &:hover {
            transition: color 0.2s;
            color: var(--primary-color);
        }
    }
    .actions {
        display: flex;
        justify-content: flex-end;
        @media (max-width: 600px) {
            justify-content: flex-end;
        }
        a {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            color: var(--background-color);
            padding: 0.5rem;
            padding-left: 1rem;
            padding-right: 1rem;
            background: transparent;
            border: 1px solid var(--primary-color);
            border-radius: 36px;
            color: var(--primary-color);
            svg {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 14px;
                height: 14px;
            }
            &:hover {
                cursor: pointer;
                background: transparent;

                border: 1px solid var(--text-color);
                transition:
                    background 0.2s,
                    color 0.2s;
            }
        }
    }
}
